From cc16f8106783aa76d651952d000a9de835a4136b Mon Sep 17 00:00:00 2001 From: adroslice Date: Sun, 22 Oct 2023 22:08:43 +0200 Subject: [PATCH] Fix minor text cutoff issue --- client/src/global-styles/mlfe.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/client/src/global-styles/mlfe.css b/client/src/global-styles/mlfe.css index cefc80c..fa1fdaf 100644 --- a/client/src/global-styles/mlfe.css +++ b/client/src/global-styles/mlfe.css @@ -32,3 +32,8 @@ ul, ol { gap: 0.5rem; padding-left: 1rem; } + +/* Fix text getting cut off unpredictably */ +h1, h2, h3, h4, h5, h6, pre, p, label, legend { + overflow: visible; +} \ No newline at end of file