mobile fixed and mogged

This commit is contained in:
2026-01-07 13:53:29 +00:00
parent 018bf772f3
commit ec525ef571
4 changed files with 65 additions and 25 deletions

View File

@@ -42,10 +42,27 @@ import Overlay from "@/components/Overlay.vue";
<style scoped>
.grid {
display: grid;
grid-gap: 10px;
grid-gap: 5px;
grid-template-columns: repeat(10, 1fr);
grid-template-rows: repeat(10, 1fr);
}
.ov4 {
position: fixed; /* instead of absolute */
bottom: 0;
right: 0;
width: 250px; /* keeps size fixed */
}
@media (max-width: 850px) {
.grid {
width: 100%;
display: flex;
flex-direction: column;
}
.ov4 {
width: 100px; /* keeps size fixed */
}
}
.intro {
grid-column: 1 / span 6;
@@ -110,12 +127,6 @@ import Overlay from "@/components/Overlay.vue";
bottom: -50px;
left: -200px;
}
.ov4 {
width: 250px;
position: absolute;
bottom: 0px;
right: 0px;
}
.ov5 {
height: 100px;
position: absolute;