Reduce keypad gap and margin in alarm panel card (#25735)

pull/25739/head
Paul Bottein 2025-06-10 12:16:06 +02:00 committed by GitHub
parent 7b9683df89
commit 6e7ac6fdf7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 2 deletions

View File

@ -418,12 +418,11 @@ class HuiAlarmPanelCard extends LitElement implements LovelaceCard {
.keypad {
--keypad-columns: 3;
margin-top: 12px;
padding: 12px;
display: grid;
grid-template-columns: repeat(var(--keypad-columns), auto);
grid-auto-rows: auto;
grid-gap: 24px;
grid-gap: 16px;
justify-items: center;
align-items: center;
}