Skip to content

Commit

Permalink
Merge pull request #18 from peiche/v1.0.3
Browse files Browse the repository at this point in the history
V1.0.3
  • Loading branch information
peiche authored Dec 11, 2023
2 parents 47ccaa3 + eb41fe6 commit 3794368
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 1.0.3

- Added top margin to quote block.

## 1.0.2

- Moved anonymous functions to named functions.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ankur",
"version": "1.0.2",
"version": "1.0.3",
"description": "WordPress block theme supporting full site editing",
"scripts": {
"lint:css": "wp-scripts lint-style \"src/**/*.scss\"",
Expand Down
18 changes: 11 additions & 7 deletions src/scss/blocks/quote/_base.scss
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
.wp-block-quote.is-large,
.wp-block-quote.is-style-large {
padding-left: 0;
padding-right: 0;
.wp-block-quote {
margin-block-start: var(--wp--preset--spacing--component-padding);

p {
font-style: normal;
font-size: var(--wp--preset--font-size--xl);
&.wp-block-quote.is-large,
&.wp-block-quote.is-style-large {
padding-left: 0;
padding-right: 0;

p {
font-style: normal;
font-size: var(--wp--preset--font-size--xl);
}
}
}

0 comments on commit 3794368

Please sign in to comment.