AlbumHeaderBox: fix slight misalignment

The 'back' arrow was one pixel taller than the header itself.
Couldn't let that slide :-)
This commit is contained in:
Aaron van Geffen 2023-04-01 14:45:06 +02:00
parent be909bf54d
commit d315f4d0c2

View File

@ -231,7 +231,7 @@ div.polaroid:hover {
/* Album title boxes /* Album title boxes
----------------------*/ ----------------------*/
.album_title_box { .album_title_box {
margin-left: -46px; margin-left: -2.85rem;
width: 100%; width: 100%;
} }
.album_title_box > a { .album_title_box > a {
@ -241,7 +241,7 @@ div.polaroid:hover {
border-bottom-left-radius: 0.5rem; border-bottom-left-radius: 0.5rem;
display: inline-block; display: inline-block;
float: left; float: left;
font-size: 2em; font-size: 2rem;
line-height: 1; line-height: 1;
padding: 8px 10px; padding: 8px 10px;
} }
@ -252,7 +252,7 @@ div.polaroid:hover {
border-bottom-right-radius: 0.5rem; border-bottom-right-radius: 0.5rem;
float: left; float: left;
font: inherit; font: inherit;
padding: 6px 22px; padding: 0.4rem 1.3rem;
max-width: 90%; max-width: 90%;
margin: 0 0 1.5% 0; margin: 0 0 1.5% 0;
} }