From 273d0dc74cb7785e9b7a135d593a966d694ee1ff Mon Sep 17 00:00:00 2001 From: Ramon Wenger Date: Mon, 15 Mar 2021 22:54:11 +0100 Subject: [PATCH] Add bullet point styling to assignment solution --- client/src/components/content-blocks/Solution.vue | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/client/src/components/content-blocks/Solution.vue b/client/src/components/content-blocks/Solution.vue index c42c7026..9b67e86a 100644 --- a/client/src/components/content-blocks/Solution.vue +++ b/client/src/components/content-blocks/Solution.vue @@ -26,14 +26,14 @@ data() { return { - visible: false + visible: false, }; }, methods: { toggle() { this.visible = !this.visible; - } + }, }, }; @@ -67,6 +67,13 @@ font-size: toRem(18px); color: $color-silver-dark; } + + /deep/ ul { + padding-left: $medium-spacing; + > li { + list-style: disc outside none; + } + } } }