mirror of
https://github.com/wassname/talk.git
synced 2026-07-02 12:32:39 +08:00
21 lines
353 B
CSS
21 lines
353 B
CSS
/* Here we add global stylings for body and document */
|
|
:global {
|
|
body {
|
|
margin: 0;
|
|
padding: 2px 8px;
|
|
|
|
/* Support for all WebKit browsers. */
|
|
-webkit-font-smoothing: antialiased;
|
|
/* Support for Firefox. */
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
}
|
|
|
|
.root {
|
|
width: 100%;
|
|
}
|
|
|
|
.tabContent {
|
|
padding-top: var(--spacing-unit);
|
|
}
|