From e0c0a423c1ccda5a93dce489d78b2db3100bf2f1 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 29 Nov 2025 21:04:22 +0200 Subject: [PATCH] feat(mobile/split): layout vertically on mobile --- apps/client/src/stylesheets/style.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/apps/client/src/stylesheets/style.css b/apps/client/src/stylesheets/style.css index e3372b4af..5db21a7e2 100644 --- a/apps/client/src/stylesheets/style.css +++ b/apps/client/src/stylesheets/style.css @@ -2624,4 +2624,12 @@ iframe.print-iframe { position: relative; flex-grow: 1; width: 100%; +} + +body.mobile .split-note-container-widget { + flex-direction: column !important; + + .note-split { + width: 100%; + } } \ No newline at end of file