mirror of
https://github.com/wassname/talk.git
synced 2026-07-12 22:55:31 +08:00
19 lines
410 B
CSS
19 lines
410 B
CSS
/* Here we add global stylings for body and document */
|
|
:global {
|
|
body {
|
|
margin: 0;
|
|
|
|
/* Support for all WebKit browsers. */
|
|
-webkit-font-smoothing: antialiased;
|
|
/* Support for Firefox. */
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
}
|
|
|
|
.root {
|
|
width: 100%;
|
|
padding: var(--spacing-unit) var(--spacing-unit) calc(2 * var(--spacing-unit))
|
|
var(--spacing-unit);
|
|
box-sizing: border-box;
|
|
}
|