replace paddings with variables

Signed-off-by: Tobias Erbshäußer <tobias@tesoft.dev>
This commit is contained in:
2026-05-24 09:40:24 +02:00
parent 2b6c7074c2
commit 07b35bfc0b
8 changed files with 19 additions and 19 deletions
+3 -3
View File
@@ -12,7 +12,7 @@
.article {
display: grid;
gap: 1.6rem;
gap: var(--large-padding);
grid-template-columns: 1fr;
grid-template-rows: auto auto;
width: 100%;
@@ -27,7 +27,7 @@
.header > h1 {
align-items: center;
display: grid;
gap: 1rem;
gap: var(--medium-padding);
grid-template-columns: auto auto;
grid-template-rows: auto;
justify-content: start;
@@ -43,7 +43,7 @@
.tags {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
gap: var(--small-padding);
}
img {