From b12bcfd5eabbc55c53c0000a410ebd279e962cf0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Fri, 20 Feb 2026 10:48:12 +0100 Subject: [PATCH] style: remove uppercase and add vertical separators to footer navigation --- assets/css/tailwind.css | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/assets/css/tailwind.css b/assets/css/tailwind.css index 7b5ccd6..d0588ec 100644 --- a/assets/css/tailwind.css +++ b/assets/css/tailwind.css @@ -101,7 +101,16 @@ /* Footer navigation styling */ footer nav ul.nav { - @apply flex items-center space-x-6 text-sm uppercase tracking-wider; + @apply flex items-center space-x-4 text-sm tracking-wide; + } + + footer nav ul.nav li { + @apply flex items-center; + } + + footer nav ul.nav li:not(:last-child)::after { + content: "|"; + @apply ml-4 opacity-20 text-[var(--text-secondary)]; } /* Navigation Links */