Reduce ha-icon-button-group height (#17664)

This commit is contained in:
Paul Bottein 2023-08-22 11:09:18 +02:00 committed by GitHub
parent e3f53e90e2
commit d33430e53f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,17 +14,17 @@ export class HaIconButtonGroup extends LitElement {
display: flex;
flex-direction: row;
align-items: center;
height: 56px;
height: 48px;
border-radius: 28px;
background-color: rgba(139, 145, 151, 0.1);
box-sizing: border-box;
width: auto;
padding: 4px;
gap: 4px;
padding: 0;
}
::slotted(.separator) {
background-color: rgba(var(--rgb-primary-text-color), 0.15);
width: 1px;
margin: 0 1px;
height: 40px;
}
`;