fix: remove scoped styles from user pages
these are *hell* for user styles and they're really not necessary. they are still used on some editor pages as those are less important to be able to comprehensively style, imo
This commit is contained in:
parent
39a3098a99
commit
5cdadc6158
3 changed files with 16 additions and 17 deletions
|
@ -49,3 +49,18 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Give identicons a background distinguishable from the page
|
||||
.identicon {
|
||||
@media (prefers-color-scheme: dark) {
|
||||
background-color: var(--bs-secondary-border-subtle);
|
||||
}
|
||||
|
||||
background-color: var(--bs-light-border-subtle);
|
||||
}
|
||||
|
||||
.profile-flag {
|
||||
height: 1.5rem;
|
||||
max-width: 200px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
|
|
@ -26,12 +26,4 @@
|
|||
img {
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.identicon {
|
||||
@media (prefers-color-scheme: dark) {
|
||||
background-color: var(--bs-secondary-border-subtle);
|
||||
}
|
||||
|
||||
background-color: var(--bs-light-border-subtle);
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -10,17 +10,9 @@
|
|||
<span class="mx-2 my-1">
|
||||
<img
|
||||
use:tippy={{ content: flag.description ?? flag.name }}
|
||||
class="flag"
|
||||
class="profile-flag"
|
||||
src={flag.image_url ?? DEFAULT_FLAG}
|
||||
alt={flag.description ?? flag.name}
|
||||
/>
|
||||
{flag.name}
|
||||
</span>
|
||||
|
||||
<style>
|
||||
.flag {
|
||||
height: 1.5rem;
|
||||
max-width: 200px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue