From d196cafb9cf14fa24141660c080a5f86103619f7 Mon Sep 17 00:00:00 2001 From: Rukmini Bose Date: Wed, 5 Oct 2022 10:18:26 -0700 Subject: [PATCH] Fix overflow bug in entries and embed container. Refactor code so that containers optimize space of each entry --- src/styles/notebook.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/styles/notebook.scss b/src/styles/notebook.scss index 7899b0a651..7dbfc8fac6 100644 --- a/src/styles/notebook.scss +++ b/src/styles/notebook.scss @@ -314,6 +314,7 @@ &__time-and-content { display: block; flex: 1 1 auto; + overflow: auto; > * + * { margin-top: $interiorMarginSm; @@ -331,7 +332,7 @@ } &__content { - display: inline-flex; + display: flex; flex-direction: column; flex: 1 1 auto; margin-right: $interiorMarginSm;