Add bullet point styling to assignment solution

This commit is contained in:
Ramon Wenger 2021-03-15 22:54:11 +01:00
parent 8f6b2e3847
commit 273d0dc74c
1 changed files with 9 additions and 2 deletions

View File

@ -26,14 +26,14 @@
data() {
return {
visible: false
visible: false,
};
},
methods: {
toggle() {
this.visible = !this.visible;
}
},
},
};
</script>
@ -67,6 +67,13 @@
font-size: toRem(18px);
color: $color-silver-dark;
}
/deep/ ul {
padding-left: $medium-spacing;
> li {
list-style: disc outside none;
}
}
}
}