Increase generic entity row touch target (#23894)

This commit is contained in:
Philipp 2025-01-27 14:52:32 +01:00 committed by GitHub
parent 9359e9d475
commit b3391b34e4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -195,11 +195,15 @@ export class HuiGenericEntityRow extends LitElement {
flex-direction: row;
}
.info {
margin-left: 16px;
margin-right: 8px;
margin-inline-start: 16px;
margin-inline-end: 8px;
padding-left: 16px;
padding-right: 8px;
padding-inline-start: 16px;
padding-inline-end: 8px;
flex: 1 1 30%;
min-height: 40px;
display: flex;
flex-direction: column;
justify-content: center;
}
.info,
.info > * {
@ -233,6 +237,9 @@ export class HuiGenericEntityRow extends LitElement {
}
.value {
direction: ltr;
min-height: 40px;
display: flex;
align-items: center;
}
`;
}