Prevent AutoScroll On Resize

This commit is contained in:
brausjonas
2023-05-30 04:00:17 +02:00
parent dac59d4a23
commit e33301f02e
+2 -4
View File
@@ -251,15 +251,13 @@ Calender View
.calender-container { .calender-container {
position: relative;
max-height: 60vh; max-height: 60vh;
overflow-y: scroll; overflow-y: scroll;
overflow-anchor: none;
display: grid; display: grid;
} }
.calender-container::-webkit-scrollbar-button {
display: none;
}
.content { .content {
grid-area: 1 / 1; grid-area: 1 / 1;
} }