From f9a1dc4ddf6c07ce9982828e9415141b8c2d3e94 Mon Sep 17 00:00:00 2001 From: Leonardo Cavaletti Date: Sat, 6 Feb 2021 15:56:23 +0000 Subject: [PATCH] CSS fixes --- bundles/loconotion.css | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/bundles/loconotion.css b/bundles/loconotion.css index 8328746..8b9c4fe 100644 --- a/bundles/loconotion.css +++ b/bundles/loconotion.css @@ -108,8 +108,22 @@ svg.alias { width: fit-content; } - /* Stops text from overflowing past max-width on bookmark blocks; */ + /* stops text from overflowing past max-width on bookmark blocks; */ .notion-bookmark-block div { white-space: unset !important; } + + /* fixes oversized page properties on Safari */ + .notion-scroller + > div:nth-child(2):not(.notion-page-content) + > div:not([data-block-id]) + div:not(.notion-page-details-controls) { + background: red !important; + height: auto !important; + } + + /* fixes possible stray header on tables */ + .notion-collection_view_page-block > div:first-child { + transform: unset !important; + } }