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.
 
 
 
 
 

52 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. // ─── Sections ─────────────────────────────────────────────────────────────────
  21. @use 'sections/timetracking';
  22. @use 'sections/home';
  23. @use 'sections/report';
  24. // ─── Themes ───────────────────────────────────────────────────────────────────
  25. @use 'themes/minimal';
  26. // ─── Reset / Base ─────────────────────────────────────────────────────────────
  27. @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');
  28. *,
  29. *::before,
  30. *::after {
  31. box-sizing: border-box;
  32. margin: 0;
  33. padding: 0;
  34. }
  35. html {
  36. font-size: 16px;
  37. }
  38. body {
  39. background: var(--color-bg);
  40. }
  41. [hidden] {
  42. display: none !important;
  43. }