style: apply prettier formatting

This commit is contained in:
printcalc-ci
2026-03-03 11:46:26 +00:00
parent dd6f723271
commit 20293cc044
131 changed files with 5674 additions and 3482 deletions

View File

@@ -1,9 +1,11 @@
/* src/styles.scss */
@use './styles/theme';
@use './styles/patterns';
@use "./styles/theme";
@use "./styles/patterns";
/* Reset / Base */
*, *::before, *::after {
*,
*::before,
*::after {
box-sizing: border-box;
}
@@ -16,7 +18,12 @@ body {
-webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
font-weight: 600;
line-height: 1.2;
@@ -44,6 +51,12 @@ a {
padding: 0 var(--space-4);
}
.text-center { text-align: center; }
.mb-4 { margin-bottom: var(--space-4); }
.mt-4 { margin-top: var(--space-4); }
.text-center {
text-align: center;
}
.mb-4 {
margin-bottom: var(--space-4);
}
.mt-4 {
margin-top: var(--space-4);
}