chore: improve css with variables

This commit is contained in:
2026-01-28 20:59:07 +01:00
parent 6d88a87b89
commit 226b0d95ab
5 changed files with 126 additions and 129 deletions

View File

@@ -36,19 +36,19 @@ onMounted(() => {
footer {
background-color: var(--primary-color);
color: var(--secondary-color);
padding: 0 1.5rem;
padding: 0 var(--space-6);
}
.wrapper {
display: flex;
align-items: flex-end;
gap: 1.5rem;
padding: 1.5rem 0;
gap: var(--space-6);
padding: var(--space-6) 0;
}
address {
font-size: 0.65rem;
line-height: 12px;
font-size: var(--text-xs);
line-height: var(--leading-relaxed);
}
img {
@@ -57,32 +57,22 @@ img {
@media (min-width: 768px) {
.wrapper {
gap: 3rem;
gap: var(--space-12);
}
img {
height: 104px;
}
address {
font-size: 0.75rem;
line-height: 14px;
}
}
@media (min-width: 1024px) {
.wrapper {
gap: 8rem;
gap: var(--space-16);
}
img {
height: 120px;
}
address {
font-size: 0.95rem;
line-height: 15px;
}
}
@media (min-width: 1536px) {
@@ -93,11 +83,6 @@ img {
img {
height: 146px;
}
address {
font-size: 1rem;
line-height: 20px;
}
}
@media (min-width: 1920px) {
@@ -108,11 +93,5 @@ img {
img {
height: 155px;
}
address {
font-size: 1.15rem;
line-height: 22px;
}
}
</style>