Improved profile margins and summary editor.

This commit is contained in:
2024-09-02 00:18:39 +02:00
parent 235d097f08
commit cc7ca7544b
6 changed files with 111 additions and 48 deletions

View File

@@ -59,12 +59,18 @@ async function reloadStashes() {
<style scoped>
.stashes {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
gap: 1rem;
padding: 0 .5rem 1rem .5rem;
grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
gap: .5rem;
padding: 0 0 1rem 0;
}
@media(--small-30) {
@media(--compact) {
.stashes {
padding: 0 1rem 1rem 1rem;
}
}
@media(--small-20) {
.stashes {
padding: 0 .5rem 1rem .5rem;
}