diff --git a/CHANGELOG.md b/CHANGELOG.md index db23ef379..f471a4e3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ We're still in the [initial development phase](https://www.jering.tech/articles/ This changelog also serves to acknowledge the incredible people who've contributed brilliance, effort and being. Their handles are listed under the first release they each touched. 💗🙏🏾 +## [Unreleased] +* Unordered lists in user provided custom text (eg /about) now display with discs ('bullets') #777, #779 ## [0.3.0] - 2020-10-05 ### Breaking changes diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss index a3068a41d..e6ef65291 100644 --- a/app/assets/stylesheets/application.scss +++ b/app/assets/stylesheets/application.scss @@ -7,6 +7,8 @@ @import './yearbook'; // TODO: remove this once listings/new is refactored @import './listings'; // TODO: remove this once listings/new is refactored +@import './custom_text'; + @import './mapbox-gl'; @import './maps'; diff --git a/app/assets/stylesheets/custom_text.scss b/app/assets/stylesheets/custom_text.scss new file mode 100644 index 000000000..325ca038c --- /dev/null +++ b/app/assets/stylesheets/custom_text.scss @@ -0,0 +1,6 @@ +.custom-text { + // Bulma strips list-style from ol, ul by default + ul { + list-style: disc inside; + } +} diff --git a/app/javascript/pages/orientation/AboutSection.vue b/app/javascript/pages/orientation/AboutSection.vue index 357fb2ef0..1e0d7679c 100644 --- a/app/javascript/pages/orientation/AboutSection.vue +++ b/app/javascript/pages/orientation/AboutSection.vue @@ -1,5 +1,5 @@