mobile-friendly appearance tab

This commit is contained in:
Henry Jameson 2024-12-01 22:15:23 +02:00
commit 098087a722
3 changed files with 69 additions and 20 deletions

View file

@ -168,6 +168,25 @@ const updatePalette = (paletteKey, value) => {
grid-column: 1 / span 2;
}
}
.-mobile & {
grid-template-columns: 1fr;
grid-template-rows: repeat(10, 1fr) auto;
.palette-import-button {
grid-column: 1;
}
.palette-export-button {
grid-column: 1;
}
&.-apply {
.palette-apply-button {
grid-column: 1;
}
}
}
}
}
</style>