app.scss 870 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. @import './_variables.scss';
  2. body {
  3. margin: 0;
  4. padding: 0;
  5. font-family: $font-family-text;
  6. font-size: $font-size-regular;
  7. color: $grey-900;
  8. -webkit-font-smoothing: antialiased;
  9. -moz-osx-font-smoothing: grayscale;
  10. background-color: $grey-100;
  11. }
  12. ul {
  13. list-style-type: none;
  14. margin: 0;
  15. padding: 0;
  16. }
  17. h1 {
  18. font-family: $font-family-display;
  19. text-transform: uppercase;
  20. font-weight: $font-weight-bold;
  21. font-size: $font-size-xx-large;
  22. }
  23. h6 {
  24. font-family: $font-family-display;
  25. font-weight: $font-weight-bold;
  26. font-size: $font-size-x-large;
  27. }
  28. code {
  29. font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
  30. monospace;
  31. }
  32. #root {
  33. display: flex;
  34. height: 100vh;
  35. }
  36. .cbk-main {
  37. width: 100%;
  38. .mdc-layout-grid {
  39. display: flex;
  40. width: 100%;
  41. .mdc-layout-grid__inner {
  42. width: 100%;
  43. }
  44. }
  45. }