feat(mobile): reduce margins for empty tab

This commit is contained in:
Elian Doran
2026-02-15 14:53:01 +02:00
parent d044fce9c1
commit 78f4928611

View File

@@ -1,18 +1,20 @@
.note-detail-empty {
container-type: size;
padding-top: 50px;
min-width: 350px;
}
body.desktop {
.note-detail-empty {
container-type: size;
padding-top: 50px;
min-width: 350px;
}
.note-detail-empty > * {
margin-inline: auto;
max-width: 850px;
padding-inline: 50px;
}
@container (max-width: 600px) {
.note-detail-empty > * {
padding-inline: 20px;
margin-inline: auto;
max-width: 850px;
padding-inline: 50px;
}
@container (max-width: 600px) {
.note-detail-empty > * {
padding-inline: 20px;
}
}
}
@@ -59,4 +61,4 @@
.workspace-icon {
text-align: center;
font-size: 500%;
}
}