diff options
| author | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2021-03-22 22:27:33 +0100 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2021-03-22 22:27:33 +0100 |
| commit | 476d314bb48a643a6123e9dcb11943dbd00048db (patch) | |
| tree | 338b85d9e7781bf2ab2c16ef414d286b6d955f22 /stylesheets/concerts.css | |
| parent | 3b781d3c8e12750a4dd771f193b473abe6ab3b55 (diff) | |
| download | quatuorbellefeuille.com-476d314bb48a643a6123e9dcb11943dbd00048db.tar.xz | |
Try to fix breakpoints in CSS media queries
(min-width: XXem) and (max-width: XXem) mean ≥XXem and ≤XXem,
respectively. So we get a bunch of bugs when <body> is *exactly*
XXem:
- in individual portraits, the image keeps hovering over the text,
- sometimes the menu bar disappears, and no menu button shows up,
- etc.
not all and (min-width: XXem) is the closest thing I've found to
<XXem.
Diffstat (limited to 'stylesheets/concerts.css')
| -rw-r--r-- | stylesheets/concerts.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stylesheets/concerts.css b/stylesheets/concerts.css index 9ba53c8..914b546 100644 --- a/stylesheets/concerts.css +++ b/stylesheets/concerts.css @@ -178,7 +178,7 @@ a.thumbnail { } } -@media (max-width: 50em) { +@media not all and (min-width: 50em) { .events { --cell-width: 10em; --cell-height: 8em; |
