fix a bunch of CSS variables

This commit is contained in:
dakkar 2024-12-09 09:41:48 +00:00
parent 9937ff39be
commit 3d1e35c9b8
6 changed files with 37 additions and 37 deletions

View file

@ -118,15 +118,15 @@ function checkMute(note: Misskey.entities.Note | undefined | null, mutes: Mutes)
<style module lang="scss">
.panel {
background: var(--panel);
background: var(--MI_THEME-panel);
}
@keyframes border {
from {
border-left: 0 solid var(--accent);
border-left: 0 solid var(--MI_THEME-accent);
}
to {
border-left: 6px solid var(--accent);
border-left: 6px solid var(--MI_THEME-accent);
}
}