From ce67c19ece06a30d0477c0647d2b14082465f6af Mon Sep 17 00:00:00 2001 From: Gigi Date: Tue, 14 Oct 2025 11:04:59 +0200 Subject: [PATCH] style: make explore tabs extend to grid width - Add specific styling for tabs in explore-header - Tabs now span full width to match the grid below - Maintain left alignment for consistency with grid layout --- src/styles/components/cards.css | 1 + 1 file changed, 1 insertion(+) diff --git a/src/styles/components/cards.css b/src/styles/components/cards.css index d83a53c7..d08a499a 100644 --- a/src/styles/components/cards.css +++ b/src/styles/components/cards.css @@ -73,6 +73,7 @@ .explore-header { text-align: center; margin-bottom: 3rem; } .explore-header h1 { font-size: 2.5rem; margin: 0 0 1rem 0; color: var(--color-primary); display: flex; align-items: center; justify-content: center; gap: 1rem; } .explore-subtitle { font-size: 1.125rem; color: var(--color-text-secondary); margin: 0; } +.explore-header .me-tabs { text-align: left; margin-top: 2rem; } .explore-loading, .explore-error, .explore-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; color: var(--color-text-secondary); } .explore-loading { min-height: 0; padding: 0.25rem 0; } .explore-error { color: rgb(239 68 68); /* red-500 */ }