Files
print-calculator/frontend/src/styles.scss
Joe Küng 653186e9d3
All checks were successful
Build, Test and Deploy / test-backend (push) Successful in 27s
Build, Test and Deploy / build-and-push (push) Successful in 21s
Build, Test and Deploy / deploy (push) Successful in 6s
feat(web): add enhanced grid
2026-02-02 20:33:20 +01:00

50 lines
853 B
SCSS

/* src/styles.scss */
@use './styles/theme';
@use './styles/patterns';
/* Reset / Base */
*, *::before, *::after {
box-sizing: border-box;
}
body {
margin: 0;
font-family: var(--font-family-sans);
background-color: var(--color-bg);
color: var(--color-text);
line-height: 1.5;
-webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
margin: 0;
font-weight: 600;
line-height: 1.2;
font-family: var(--font-family-display);
}
p {
margin-top: 0;
margin-bottom: var(--space-4);
}
a {
color: var(--color-brand);
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
/* Utilities */
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 var(--space-4);
}
.text-center { text-align: center; }
.mb-4 { margin-bottom: var(--space-4); }
.mt-4 { margin-top: var(--space-4); }