Introduce CSS variables for consistent theming

This commit refactors existing styles to use CSS variables, centralizing values for colors, spacing, typography, and other design elements. It also adds a `variables.css` file for managing these variables. Updated affected components and stylesheets for better maintainability and consistency.
This commit is contained in:
2025-07-19 16:45:51 +02:00
parent 3b011bc463
commit b830f2edaf
10 changed files with 271 additions and 44 deletions

View File

@ -2,8 +2,8 @@
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 30px;
padding: 2rem 0;
gap: var(--gap-standard);
padding: var(--padding-vertical) var(--padding-horizontal);
width: 100%;
}
@ -17,4 +17,4 @@
.events-gird {
justify-content: space-around;
}
}
}