Footer, przebudowa

This commit is contained in:
dm
2025-11-21 13:38:23 +01:00
parent 0eaebc2faf
commit f9b8d58e8d
5 changed files with 128 additions and 10 deletions

View File

@@ -19,7 +19,7 @@
}
.fuz-contact-description p {
@apply text-xl mt-4;
@apply text-xl mt-4 leading-relaxed;
color: var(--fuz-text);
}

26
src/styles/footer.css Normal file
View File

@@ -0,0 +1,26 @@
.fuz-footer-title {
@apply text-xl font-semibold;
}
.fuz-footer-text {
@apply text-base;
}
/* Linki */
.fuz-footer-link {
color: var(--fuz-text);
text-decoration: none;
transition: opacity 0.2s ease;
}
.fuz-footer-link:hover {
opacity: 0.7;
}
.footer-col {
@apply max-w-sm;
}
.footer-inner {
@apply w-full px-6 max-w-screen-2xl mx-auto flex flex-col gap-10 md:flex-row md:justify-between md:items-start;
}