refactor(frontend): prefix css variables (#14725)

* wip

* Update index.d.ts

* remove unnecessary codes
This commit is contained in:
syuilo 2024-10-09 18:08:14 +09:00 committed by GitHub
parent 0ad31bd5d4
commit 4a356f1ba7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
280 changed files with 1076 additions and 1093 deletions

View file

@ -69,7 +69,7 @@ defineProps<{
z-index: 2;
width: 58px;
height: 58px;
border: solid 4px var(--panel);
border: solid 4px var(--MI_THEME-panel);
}
.title {
@ -90,7 +90,7 @@ defineProps<{
margin: 0;
line-height: 16px;
font-size: 0.8em;
color: var(--fg);
color: var(--MI_THEME-fg);
opacity: 0.7;
}
@ -108,7 +108,7 @@ defineProps<{
.description {
padding: 16px;
font-size: 0.8em;
border-top: solid 0.5px var(--divider);
border-top: solid 0.5px var(--MI_THEME-divider);
}
.mfm {
@ -120,7 +120,7 @@ defineProps<{
.status {
padding: 10px 16px;
border-top: solid 0.5px var(--divider);
border-top: solid 0.5px var(--MI_THEME-divider);
}
.statusItem {
@ -131,12 +131,12 @@ defineProps<{
.statusItemLabel {
margin: 0;
font-size: 0.7em;
color: var(--fg);
color: var(--MI_THEME-fg);
}
.statusItemValue {
font-size: 1em;
color: var(--accent);
color: var(--MI_THEME-accent);
}
.follow {