fix(svelte): Properly scope global CSS selector (#63332)

The tags page contains a `:global` selector at the root level, which
affects all elements that match the selector, even those not part of the
page.
`:global` selectors always need to be scoped one way or the other.

## Test plan

Code inspection, trivial change.
This commit is contained in:
Felix Kling 2024-06-19 17:38:21 +02:00 committed by GitHub
parent b7dd61769c
commit 29e07b7f6a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -100,6 +100,12 @@
display: flex;
flex-direction: column;
}
form,
div,
:global([data-scroller]) {
padding: 1rem;
}
}
form {
@ -111,12 +117,6 @@
}
}
form,
div,
:global([data-scroller]) {
padding: 1rem;
}
form,
div,
table {