sourcegraph/client/cody/webviews/Debug.module.css
Quinn Slack 838a029b99
add storybooks for easier local dev on vscode UI (#50772)
Running `cd client/cody && pnpm run storybook` will open storybooks for
the VS Code extension. There is a light shim in place to support
rendering the VS Code extension UI with roughly the right theme colors.

### Storybook for `<App />` (VS Code main webview UI)


![image](https://user-images.githubusercontent.com/1976/232655933-1886568f-c305-42d1-91a0-5555768e92f4.png)

![image](https://user-images.githubusercontent.com/1976/232655957-8e27e258-2214-4d81-a900-2b9f76e84f8c.png)


### Storybook for login component showing invalid state


![image](https://user-images.githubusercontent.com/1976/232655884-6632dfc8-859e-4e0e-ad1b-2fa3320154f4.png)


## Test plan

n/a; dev only

---------

Co-authored-by: Naman Kumar <naman@outlook.in>
2023-04-18 19:49:44 -07:00

14 lines
299 B
CSS

.debug-container {
margin: 1rem;
}
.debug-message {
margin: 1rem 0;
padding-bottom: 1rem;
color: var(--vscode-notifications-foreground);
background-color: var(--vscode-notifications-);
border-bottom: 2px solid var(--vscode-input-border);
white-space: pre-wrap;
overflow-wrap: break-word;
}