From 89702956c6128485ed44fd7ce03a0715b42b616e Mon Sep 17 00:00:00 2001 From: exyi Date: Sat, 17 Oct 2020 12:38:41 +0000 Subject: [PATCH] fix bullets in text fix #32 --- frontend/src/TaskDisplay.svelte | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/src/TaskDisplay.svelte b/frontend/src/TaskDisplay.svelte index 2843923..f181de1 100644 --- a/frontend/src/TaskDisplay.svelte +++ b/frontend/src/TaskDisplay.svelte @@ -50,6 +50,11 @@ import Odevzdavatko from "./Odevzdavatko.svelte"; text-align: right; font-style: italic; } + /* Workaround: ksp.css is reseting the default style for ol and ul tags */ + div :global(ul), div :global(ol) { + list-style: initial; + margin-left: 2em; + }