2 Commits

Author SHA1 Message Date
Sped0n
a6a576246f ci: update bundled artifacts [skip ci] 2025-11-25 17:52:23 +00:00
Ryan
93629a4e6b refactor(gallery): refine navClose with flexbox alignment and z-index (#536)
Replace text-align: right with display: flex, justify-content: flex-end for
consistent right alignment. Add height, z-index for layering, and adjust
margin/padding for better mobile gallery nav positioning.

Signed-off-by: Sped0n <hi@sped0n.com>
2025-11-25 17:51:47 +00:00
2 changed files with 12 additions and 3 deletions

View File

@@ -53,9 +53,18 @@
align-items: center;
.navClose {
min-width: 25%;
text-align: right;
cursor: pointer;
z-index: calc(var(--z-nav-gallery) + 1);
min-width: 25%;
height: calc(var(--nav-height) * 2.5);
display: flex;
align-items: center;
justify-content: flex-end;
margin-right: calc(var(--space-standard) * -1);
padding-right: var(--space-standard);
}
}
}

File diff suppressed because one or more lines are too long