[chore/frogend] domain blocklist layout on smaller screens (#1436)

This commit is contained in:
f0x52 2023-02-07 10:00:13 +01:00 committed by GitHub
parent b63b1b6f55
commit 0ed50c172e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 1 deletions

View File

@ -470,7 +470,7 @@ label {
.entry {
display: grid;
grid-template-columns: 15rem 1fr;
grid-template-columns: max(30%, 10rem) 1fr;
gap: 0.5rem;
align-items: start;
border: $boxshadow-border;
@ -495,4 +495,11 @@ label {
.header .domain {
color: $fg;
}
}
@media screen and (max-width: 30rem) {
.domain-blocklist .entry {
grid-template-columns: 1fr;
gap: 0;
}
}