Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 
 

44 рядки
1.6 KiB

  1. // ─── Atoms ────────────────────────────────────────────────────────────────────
  2. @use 'atoms/variables' as *;
  3. @use 'atoms/typography';
  4. @use 'atoms/buttons';
  5. @use 'atoms/inputs';
  6. // ─── Components ───────────────────────────────────────────────────────────────
  7. @use 'components/week-nav';
  8. @use 'components/entry-form';
  9. @use 'components/entry-list';
  10. @use 'components/month-calendar';
  11. @use 'components/duration-help';
  12. @use 'components/main-nav';
  13. @use 'components/greeting';
  14. @use 'components/crud';
  15. @use 'components/login';
  16. @use 'components/register';
  17. @use 'components/account';
  18. @use 'components/team';
  19. // ─── Sections ─────────────────────────────────────────────────────────────────
  20. @use 'sections/timetracking';
  21. @use 'sections/home';
  22. @use 'sections/report';
  23. // ─── Reset / Base ─────────────────────────────────────────────────────────────
  24. *,
  25. *::before,
  26. *::after {
  27. box-sizing: border-box;
  28. margin: 0;
  29. padding: 0;
  30. }
  31. html {
  32. font-size: 16px;
  33. }
  34. body {
  35. background: $color-bg;
  36. }
  37. @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');