Skip to content

Commit

Permalink
Merge pull request #28 from peiche/v1.1.1
Browse files Browse the repository at this point in the history
V1.1.1
  • Loading branch information
peiche authored Jun 20, 2024
2 parents 2bbf270 + 8a6db9a commit 83aeb33
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 27 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## 1.1.1

- Fixed broken spacing in post terms, search, and code blocks.
- Vulnerability fix for `braces` package.

## 1.1.0

- Now using v3 of theme.json schema.
Expand Down
28 changes: 14 additions & 14 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.1.0",
"version": "1.1.1",
"description": "WordPress block theme supporting full site editing",
"scripts": {
"lint:css": "wp-scripts lint-style \"src/**/*.scss\"",
Expand Down
4 changes: 2 additions & 2 deletions src/scss/blocks/post-terms/_editor.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
color: var(--wp--preset--color--contrast-high);
text-decoration: none;
border-radius: 9999px;
padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--40);
padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);

&::after {
content: "";
Expand All @@ -19,6 +19,6 @@
background-color: transparent;
color: var(--wp--preset--color--contrast-high);
border: 2px solid var(--wp--preset--color--contrast-low);
padding: var(--wp--preset--spacing--10) var(--wp--preset--spacing--30);
padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
}
}
4 changes: 2 additions & 2 deletions src/scss/blocks/post-terms/_theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
.wp-block-post-terms {
&.is-style-buttons a {
background-color: var(--wp--preset--color--contrast-lower);
padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--40);
padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
}

&.is-style-outline a {
background-color: transparent;
border: 2px solid var(--wp--preset--color--contrast-low);
padding: var(--wp--preset--spacing--10) var(--wp--preset--spacing--30);
padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
}

&.is-style-buttons,
Expand Down
7 changes: 1 addition & 6 deletions src/scss/blocks/search/_theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
&.has-icon {
margin: 0;
border: 0;
padding: var(--wp--preset--spacing--10);
padding: var(--wp--preset--spacing--20);
}
}

Expand All @@ -18,11 +18,6 @@
margin-top: 0;
padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--20)
var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);

@media (min-width: 64rem) {
padding: var(--wp--preset--spacing--10) var(--wp--preset--spacing--10)
var(--wp--preset--spacing--10) var(--wp--preset--spacing--20);
}
}

&__input {
Expand Down
2 changes: 1 addition & 1 deletion src/scss/theme/_typography.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

.entry-content :not(.wp-block-code) > code {
background-color: var(--wp--preset--color--contrast-lower);
padding: var(--wp--preset--spacing--10) var(--wp--preset--spacing--10);
padding: var(--wp--preset--spacing--20);
border-radius: var(--wp--custom--radius-sm);
}

Expand Down
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Theme Name: Ankur
Author: Paul Eiche
Description: WordPress block theme with support for color variations and custom patterns.
Version: 1.1.0
Version: 1.1.1
Requires at least: 5.9
Tested up to: 6.0
Requires PHP: 7.4
Expand Down

0 comments on commit 83aeb33

Please sign in to comment.