Fix: Prevent card overflow on small screens

This commit is contained in:
lscambo13
2024-12-19 09:06:38 -08:00
parent 1d50e2b673
commit b9e9deb9d1

View File

@@ -92,6 +92,7 @@ html {
border: var(--borderColor) solid var(--borderWidth) !important; border: var(--borderColor) solid var(--borderWidth) !important;
overflow: hidden !important; overflow: hidden !important;
transition: 125ms transform; transition: 125ms transform;
/* box-shadow: 0 .0725em .29em 0 rgba(0, 0, 0, .37); */
} }
.cardImageContainer { .cardImageContainer {
@@ -169,7 +170,7 @@ h1 {
.portraitCard { .portraitCard {
min-width: 5em; min-width: 5em;
width: 30%; width: 29.5%;
max-width: 12.9em; max-width: 12.9em;
} }