From 8248522dbc945074091a8666ae02d34a5012ac1f Mon Sep 17 00:00:00 2001 From: Wolfgang Werner Date: Thu, 20 Mar 2025 14:56:35 +0100 Subject: [PATCH 1/2] fix: Only hide timeline container when there's not enough space --- common/common.scss | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/common/common.scss b/common/common.scss index 3c85b04..0761c8c 100644 --- a/common/common.scss +++ b/common/common.scss @@ -2,8 +2,10 @@ min-width: 768px; } -.timeline-container { - display: none; +@media (width <= 1420px) { + .timeline-container { + display: none; + } } .cooked pre[data-code-wrap="rapidoc"] { From 3f9e8edbc0787472f93ccca839f8feaa0fb19eac Mon Sep 17 00:00:00 2001 From: Wolfgang Werner Date: Thu, 20 Mar 2025 15:00:59 +0100 Subject: [PATCH 2/2] chore: Format properly --- common/common.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/common.scss b/common/common.scss index 0761c8c..d160558 100644 --- a/common/common.scss +++ b/common/common.scss @@ -1,9 +1,9 @@ -.cooked { +cooked { min-width: 768px; } @media (width <= 1420px) { - .timeline-container { + .timeline-container { display: none; } }