Skip to content

Commit 83aeb33

Browse files
authoredJun 20, 2024··
Merge pull request #28 from peiche/v1.1.1
V1.1.1
2 parents 2bbf270 + 8a6db9a commit 83aeb33

File tree

8 files changed

+27
-27
lines changed

8 files changed

+27
-27
lines changed
 

‎CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Log
22

3+
## 1.1.1
4+
5+
- Fixed broken spacing in post terms, search, and code blocks.
6+
- Vulnerability fix for `braces` package.
7+
38
## 1.1.0
49

510
- Now using v3 of theme.json schema.

‎package-lock.json

+14-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ankur",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "WordPress block theme supporting full site editing",
55
"scripts": {
66
"lint:css": "wp-scripts lint-style \"src/**/*.scss\"",

‎src/scss/blocks/post-terms/_editor.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
color: var(--wp--preset--color--contrast-high);
88
text-decoration: none;
99
border-radius: 9999px;
10-
padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--40);
10+
padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
1111

1212
&::after {
1313
content: "";
@@ -19,6 +19,6 @@
1919
background-color: transparent;
2020
color: var(--wp--preset--color--contrast-high);
2121
border: 2px solid var(--wp--preset--color--contrast-low);
22-
padding: var(--wp--preset--spacing--10) var(--wp--preset--spacing--30);
22+
padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
2323
}
2424
}

‎src/scss/blocks/post-terms/_theme.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
.wp-block-post-terms {
44
&.is-style-buttons a {
55
background-color: var(--wp--preset--color--contrast-lower);
6-
padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--40);
6+
padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
77
}
88

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

1515
&.is-style-buttons,

‎src/scss/blocks/search/_theme.scss

+1-6
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
&.has-icon {
1010
margin: 0;
1111
border: 0;
12-
padding: var(--wp--preset--spacing--10);
12+
padding: var(--wp--preset--spacing--20);
1313
}
1414
}
1515

@@ -18,11 +18,6 @@
1818
margin-top: 0;
1919
padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--20)
2020
var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
21-
22-
@media (min-width: 64rem) {
23-
padding: var(--wp--preset--spacing--10) var(--wp--preset--spacing--10)
24-
var(--wp--preset--spacing--10) var(--wp--preset--spacing--20);
25-
}
2621
}
2722

2823
&__input {

‎src/scss/theme/_typography.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

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

‎style.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Theme Name: Ankur
33
Author: Paul Eiche
44
Description: WordPress block theme with support for color variations and custom patterns.
5-
Version: 1.1.0
5+
Version: 1.1.1
66
Requires at least: 5.9
77
Tested up to: 6.0
88
Requires PHP: 7.4

0 commit comments

Comments
 (0)
Please sign in to comment.