summaryrefslogtreecommitdiff
path: root/ui/lib/components
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2024-11-02 13:51:40 -0400
committerOwen Jacobson <owen@grimoire.ca>2024-11-02 13:51:40 -0400
commitca8bd1bc85ec48aea1eac7e04c58e66c0fbb39ae (patch)
tree8208bb433c792bf7e3575dfb1d28b4fb780b70c8 /ui/lib/components
parent77f750496d9e6e0f9301646f4066dc53e4ad7fab (diff)
Specify overflow behaviour more loosely.
On Safari, `overflow: scroll` forces scrollbars even where not required, leading to a really janky display studded with stray scrollbars.
Diffstat (limited to 'ui/lib/components')
-rw-r--r--ui/lib/components/ActiveChannel.svelte2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/lib/components/ActiveChannel.svelte b/ui/lib/components/ActiveChannel.svelte
index 455043b..76bf13a 100644
--- a/ui/lib/components/ActiveChannel.svelte
+++ b/ui/lib/components/ActiveChannel.svelte
@@ -37,6 +37,6 @@
<style>
.container {
- overflow: scroll;
+ overflow: auto;
}
</style>