Skip to content

Commit 90decb2

Browse files
committed
Fix Landsraad System select height and width uniformity
Remove fixed height (38px) from Save Rules button and hardcoded width (150px) from the select, allowing both to size naturally. The select now uses flex: 0 1 180px (matching the pattern of bottom selects like Player/Task), and both elements align uniformly without visual gaps. Fixes #51.
1 parent 6554d93 commit 90decb2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

console/web/src/styles.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1441,8 +1441,8 @@ td .inline-action-result-wrap { flex: 1 0 100%; justify-content: flex-start; min
14411441
.landsraad-persistent-status .inline-action-result { display: inline-flex; align-items: center; min-height: 24px; line-height: 1.2; white-space: nowrap; }
14421442
.landsraad-persistent-controls { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: flex-end; min-width: min(100%, 460px); }
14431443
.landsraad-persistent-controls label { display: inline-flex; flex-direction: row; gap: 8px; align-items: center; min-width: 0; color: #ceb894; font-size: 1rem; font-weight: 400; }
1444-
.landsraad-persistent-controls select { width: 150px; height: auto; font-size: 1rem; }
1445-
.landsraad-persistent-controls button { height: 38px; }
1444+
.landsraad-persistent-controls select { flex: 0 1 180px; height: auto; }
1445+
.landsraad-persistent-controls button { height: auto; }
14461446
.landsraad-section-divider { margin-top: 2px; }
14471447
.landsraad-task-table th, .landsraad-task-table td,
14481448
.landsraad-reward-table th, .landsraad-reward-table td { vertical-align: middle; }

0 commit comments

Comments
 (0)