fix: responsiveness

This commit is contained in:
2025-03-08 20:37:00 +01:00
parent 13a9baa175
commit 744804d445
3 changed files with 9 additions and 6 deletions
+1 -3
View File
@@ -105,15 +105,13 @@ onMounted(() => {
margin-bottom: 1em;
}
@media screen and (max-width: 400px) {
@media screen and (max-width: global.$breakpointSm) {
.tabs-modes {
grid-template-areas:
'stock wiki'
'storage storage'
'numgen stockgen';
grid-template-columns: repeat(2, 1fr);
// grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
}
</style>