| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- @import './_variables.scss';
- body {
- margin: 0;
- padding: 0;
- font-family: $font-family-text;
- font-size: $font-size-regular;
- color: $grey-900;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- background-color: $grey-100;
- }
- ul {
- list-style-type: none;
- margin: 0;
- padding: 0;
- }
- h1 {
- font-family: $font-family-display;
- text-transform: uppercase;
- font-weight: $font-weight-bold;
- font-size: $font-size-xx-large;
- }
- h6 {
- font-family: $font-family-display;
- font-weight: $font-weight-bold;
- font-size: $font-size-x-large;
- }
- code {
- font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
- monospace;
- }
- #root {
- display: flex;
- height: 100vh;
- }
- .cbk-main {
- width: 100%;
- .mdc-layout-grid {
- display: flex;
- width: 100%;
-
- .mdc-layout-grid__inner {
- width: 100%;
- }
- }
- }
|