frontend: fix compactruneselector on mobile

This commit is contained in:
2026-02-28 13:53:37 +01:00
parent 8c9da868f4
commit f6cf2c8a8c

View File

@@ -118,4 +118,11 @@ const emit = defineEmits<{
opacity: 0.9;
color: #4a9eff;
}
/* Mobile fix: Remove negative margin to prevent overlap with runes */
@media only screen and (max-width: 900px) {
.compact-rune-selector {
margin-top: 15px;
}
}
</style>