From 70aa813c7f021d620f7efd67dd13c68743b4d626 Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Mon, 23 Mar 2026 01:10:56 +0100 Subject: [PATCH] Remove unused CSS from domains page --- frontend/src/routes/domains/+page.svelte | 35 ------------------------ 1 file changed, 35 deletions(-) diff --git a/frontend/src/routes/domains/+page.svelte b/frontend/src/routes/domains/+page.svelte index a6aa547..8689dee 100644 --- a/frontend/src/routes/domains/+page.svelte +++ b/frontend/src/routes/domains/+page.svelte @@ -154,41 +154,6 @@ margin-top: 1.5rem; } - .domains-grid { - display: grid; - grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); - gap: 1rem; - margin-top: 1rem; - } - - .domain-card { - background: white; - padding: 1rem 1.5rem; - border-radius: 8px; - box-shadow: 0 2px 4px rgba(0,0,0,0.1); - display: flex; - justify-content: space-between; - align-items: center; - text-decoration: none; - color: inherit; - transition: transform 0.2s, box-shadow 0.2s; - } - - .domain-card:hover { - transform: translateY(-2px); - box-shadow: 0 4px 8px rgba(0,0,0,0.15); - } - - .domain-name { - font-weight: 600; - color: #2c3e50; - } - - .domain-links { - color: #3498db; - font-size: 0.9rem; - } - table { width: 100%; background: white;