fix: update menu toggle positioning for improved layout across multiple HTML files
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
George Birikorang 2025-09-02 02:51:38 -04:00
parent 35b0d1aa76
commit 49d1ef8825
6 changed files with 31 additions and 5 deletions

View file

@ -777,6 +777,10 @@ video {
z-index: 60;
}
.z-0 {
z-index: 0;
}
.mx-4 {
margin-left: 1rem;
margin-right: 1rem;
@ -998,6 +1002,10 @@ video {
max-height: 100%;
}
.max-h-\[95vh\] {
max-height: 95vh;
}
.min-h-\[90vh\] {
min-height: 90vh;
}
@ -2548,6 +2556,18 @@ video {
left: 3rem;
}
.md\:bottom-12 {
bottom: 3rem;
}
.md\:right-auto {
right: auto;
}
.md\:top-auto {
top: auto;
}
.md\:ml-12 {
margin-left: 3rem;
}
@ -2580,6 +2600,10 @@ video {
height: 100%;
}
.md\:max-h-\[90vh\] {
max-height: 90vh;
}
.md\:w-1\/3 {
width: 33.333333%;
}