tweak noteFooterButton in MkNoteDetailed

This commit is contained in:
fly_mc 2024-10-18 00:29:57 +08:00
parent cfa6d6ea90
commit 211bd4d2d8

View file

@ -881,7 +881,7 @@ onMounted(() => {
.noteFooterButton {
margin: 0;
padding: 6px;
padding: 8px;
opacity: 0.7;
&:not(:last-child) {
@ -909,6 +909,26 @@ onMounted(() => {
}
}
@container (max-width: 400px) {
.root {
.noteFooterButton {
&:not(:last-child) {
margin-right: 0.2em;
}
}
}
}
@container (max-width: 350px) {
.root {
.noteFooterButton {
&:not(:last-child) {
margin-right: 0.1em;
}
}
}
}
.reply:not(:first-child) {
border-top: solid 0.5px var(--MI_THEME-divider);
}