scaffolding.less 407 B

123456789101112131415161718192021222324252627
  1. @import "ui-variables";
  2. //
  3. // Scaffolding
  4. // --------------------------------------------------
  5. *,
  6. *:before,
  7. *:after {
  8. box-sizing: border-box; // Reset the box-sizing
  9. }
  10. html,
  11. body {
  12. width: 100%;
  13. height: 100%;
  14. overflow: hidden;
  15. }
  16. html {
  17. font-family: @font-family;
  18. font-size: @font-size;
  19. line-height: 1.428571429; // 20/14
  20. color: @text-color;
  21. background-color: @app-background-color;
  22. }