commit 9547a56235e59f3b4549e49d95bb512c12dd63bb
parent b18eac9025eacb1f2d4713f11c81e129bcc5ec4d
Author: Kévin Le Gouguec <kevin.legouguec@gmail.com>
Date: Sun, 13 Dec 2020 23:35:29 +0100
Tweak default mosaic width a little
On my 1680×1050 screen, with 30em and Firefox's default font size, I
get two giant cells; with Chrome I get three, which I find less
in-your-face.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gallerie.css b/gallerie.css
@@ -7,7 +7,7 @@ main {
.mosaic {
display: grid;
- grid-template-columns: repeat(auto-fill, minmax(30em, 1fr));
+ grid-template-columns: repeat(auto-fill, minmax(25em, 1fr));
grid-gap: 0.8em;
}