From d315f4d0c20ab4a17fb37ea4599df6c4a350056b Mon Sep 17 00:00:00 2001 From: Aaron van Geffen Date: Sat, 1 Apr 2023 14:45:06 +0200 Subject: [PATCH] AlbumHeaderBox: fix slight misalignment The 'back' arrow was one pixel taller than the header itself. Couldn't let that slide :-) --- public/css/default.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/css/default.css b/public/css/default.css index 197db326..c8c9073b 100644 --- a/public/css/default.css +++ b/public/css/default.css @@ -231,7 +231,7 @@ div.polaroid:hover { /* Album title boxes ----------------------*/ .album_title_box { - margin-left: -46px; + margin-left: -2.85rem; width: 100%; } .album_title_box > a { @@ -241,7 +241,7 @@ div.polaroid:hover { border-bottom-left-radius: 0.5rem; display: inline-block; float: left; - font-size: 2em; + font-size: 2rem; line-height: 1; padding: 8px 10px; } @@ -252,7 +252,7 @@ div.polaroid:hover { border-bottom-right-radius: 0.5rem; float: left; font: inherit; - padding: 6px 22px; + padding: 0.4rem 1.3rem; max-width: 90%; margin: 0 0 1.5% 0; }