From 5fbcee89eec94a34d4648a6a5ea4718e570d3b70 Mon Sep 17 00:00:00 2001 From: Adrian Wannenmacher Date: Mon, 9 Mar 2026 21:22:32 +0100 Subject: [PATCH] clean up leftover CSS refactor styles --- ui/session-list.css | 58 --------------------------------------------- 1 file changed, 58 deletions(-) diff --git a/ui/session-list.css b/ui/session-list.css index e84d8e3..0661d6e 100644 --- a/ui/session-list.css +++ b/ui/session-list.css @@ -52,64 +52,6 @@ text-align: left; } - >.actions { - grid-area: actions; - display: flex; - justify-content: space-between; - gap: 1em; - - >* { - flex-grow: 1; - } - } - } -} - -.none { - display: flex; - flex-direction: column; - list-style: none; - padding: 1em 1em 0; - margin: 0; - min-height: 100%; - justify-content: end; - - >.item { - display: grid; - grid-template-areas: - "their-name our-name" - "their-points our-points" - "actions actions"; - grid-template-columns: repeat(2, 1fr); - grid-template-rows: repeat(3, min-content); - gap: 1em 2em; - - padding: 1em; - border-radius: 5px; - margin-bottom: 1em; - - >.theirname { - font-weight: bold; - grid-area: their-name; - text-align: right; - } - - >.ourname { - font-weight: bold; - grid-area: our-name; - text-align: left; - } - - >.theirpoints { - grid-area: their-points; - text-align: right; - } - - >.ourpoints { - grid-area: our-points; - text-align: left; - } - >.actions { grid-area: actions; display: flex;