Skip to content

Commit

Permalink
fix mobile overscroll
Browse files Browse the repository at this point in the history
  • Loading branch information
TodePond committed Jan 1, 2025
1 parent b1754b7 commit d2340f4
Showing 1 changed file with 26 additions and 2 deletions.
28 changes: 26 additions & 2 deletions src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ body {

@media screen and (max-width: 750px) {
.slots {
grid-template-columns: 1fr;
grid-template-columns: minmax(0, 1fr);
}
}

Expand Down Expand Up @@ -98,10 +98,11 @@ button {
color: white;
font-size: 16px;
border: 2px solid white;
padding: 4px;
padding: 4px 6px;
cursor: pointer;
height: 30px;
flex-shrink: 0;
white-space: nowrap;
}

button:hover {
Expand All @@ -116,3 +117,26 @@ a:hover {
background-color: #cccccc;
color: black;
}

body > header {
display: flex;
justify-content: space-between;
align-items: flex-start;
/* padding: 6px; */
}

nav {
padding: 3px;
}

.dialog-container {
/* position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
z-index: 100; */
}

0 comments on commit d2340f4

Please sign in to comment.