Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 

53 wiersze
1.9 KiB

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