fixed bingo zoom on different scaling

This commit is contained in:
Jonas_Jones 2025-03-26 14:55:23 +01:00
parent 57e735c991
commit 4bd946b75e

View file

@ -102,12 +102,13 @@ body {
display: grid;
gap: 6px;
margin: auto;
transition: transform 0.2s ease-in-out;
}
.bingo-cell {
border: 1px solid var(--bingo-cell-border-color);
width: 150px;
height: 150px;
width: calc((100vh - 10rem)/5);
height: calc((100vh - 10rem)/5);
display: flex;
justify-content: center;
align-items: center;