Fix settings dialog on mobile (#602)

This commit is contained in:
bymyself
2024-08-23 06:43:45 -07:00
committed by GitHub
parent af378262f4
commit 3d041dd742

View File

@@ -198,4 +198,15 @@ const tabValue = computed(() =>
.settings-content::-webkit-scrollbar-thumb {
background-color: transparent;
}
@media (max-width: 768px) {
.settings-container {
flex-direction: column;
height: auto;
}
.settings-sidebar {
width: 100%;
}
}
</style>