Remove padding when narrow (#9209)

This commit is contained in:
Joakim Sørensen 2021-05-22 15:12:51 +02:00 committed by GitHub
parent f873ef9b59
commit abb9f8e233
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -119,6 +119,9 @@ export class HaTab extends LitElement {
:host([narrow]) {
padding: 0 16px;
}
:host([narrow]) div {
padding: 0;
}
`;
}
}