Skip to content

Commit

Permalink
🐛 Fix the bulletpoints in the paragraph block
Browse files Browse the repository at this point in the history
  • Loading branch information
Dekker1 committed Jul 18, 2017
1 parent df33c00 commit 854ed08
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
- Materialize Textarea markup of the materialize_field tag
- The standard image formating rules in the rich text editor
- The bullet points of an unordered list in the paragraph block

## [0.6.0]
### Added
Expand Down
1 change: 1 addition & 0 deletions src/moore/static/sass/partials/blocks/_all.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@
@import "logos";
@import "news";
@import "overlay";
@import "paragraph";
@import "richtext-image";
2 changes: 2 additions & 0 deletions src/moore/static/sass/partials/blocks/_overlay.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import "../base";

.block-overlay .overlay {
background: #fff no-repeat center center;
background-size: cover;
Expand Down
10 changes: 10 additions & 0 deletions src/moore/static/sass/partials/blocks/_paragraph.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
@import "../base";

.block-paragraph {
ul {
padding-left: 40px;
&, li {
list-style-type: disc;
}
}
}

0 comments on commit 854ed08

Please sign in to comment.