aboutsummaryrefslogtreecommitdiff
path: root/src/routes
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-01-12 08:04:41 -0800
committerFuwn <[email protected]>2024-01-12 08:04:41 -0800
commit98e83b453ecdc6eee651c9e9dbf203a272c856bb (patch)
tree10d4727689d3f8fd3e0c324c8e581a93b3925017 /src/routes
parentfeat(settings): copy rss notification (diff)
downloaddue.moe-98e83b453ecdc6eee651c9e9dbf203a272c856bb.tar.xz
due.moe-98e83b453ecdc6eee651c9e9dbf203a272c856bb.zip
fix: restrict breaks for layouts
Diffstat (limited to 'src/routes')
-rw-r--r--src/routes/+page.svelte3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte
index b38bf236..b65c254f 100644
--- a/src/routes/+page.svelte
+++ b/src/routes/+page.svelte
@@ -109,8 +109,9 @@
<style>
.list {
overflow-y: auto;
- break-inside: avoid-column;
+ break-inside: avoid;
/* max-height: 80vh; */
overflow-y: auto;
+ page-break-inside: avoid;
}
</style>