Skip to content

Commit 5deae93

Browse files
Hotfix: Viewport padding, undef var
1 parent 70e1a88 commit 5deae93

File tree

12 files changed

+33
-13
lines changed

12 files changed

+33
-13
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### 9.1.4: 2022-09-07
2+
3+
* Fix: Viewport padding/white-space on mobile devices
4+
* Fix: Leftover variable not defined
5+
16
### 9.1.3: 2022-09-07
27

38
* Consistency for variable `--font-weight-paragraph`

bin/tasks/additions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ chmod 777 ${PROJECT_PATH}/media
1010

1111
echo "${YELLOW}Generating default README.md...${TXTRESET}"
1212

13-
NEWEST_AIR_VERSION="9.1.3"
13+
NEWEST_AIR_VERSION="9.1.4"
1414
NEWEST_WORDPRESS_VERSION="6.0.2"
1515
NEWEST_PHP_VERSION="7.4"
1616
CURRENT_DATE=$(LC_TIME=en_US date '+%d %b %Y' |tr ' ' '_');

css/dev/global.css

Lines changed: 7 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/dev/gutenberg-editor-styles.css

Lines changed: 7 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/prod/global.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/prod/gutenberg-editor-styles.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

functions.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
* @Date: 2019-10-15 12:30:02
99
* @Last Modified by: Roni Laukkarinen
10-
* @Last Modified time: 2022-09-07 14:08:45
10+
* @Last Modified time: 2022-09-07 14:20:26
1111
*
1212
* @package air-light
1313
*/
@@ -17,7 +17,7 @@
1717
/**
1818
* The current version of the theme.
1919
*/
20-
define( 'AIR_LIGHT_VERSION', '9.1.3' );
20+
define( 'AIR_LIGHT_VERSION', '9.1.4' );
2121

2222
// We need to have some defaults as comments or empties so let's allow this:
2323
// phpcs:disable Squiz.Commenting.InlineComment.SpacingBefore, WordPress.Arrays.ArrayDeclarationSpacing.SpaceInEmptyArray

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "air-light",
3-
"version": "9.1.3",
3+
"version": "9.1.4",
44
"description": "A minimalist WordPress starter theme.",
55
"author": "Digitoimisto Dude Oy (moro@dude.fi)",
66
"devDependencies": {

readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Tags: one-column, accessibility-ready, translation-ready
1212

1313
Requires at least: 5.0
1414
Tested up to: 6.0.2
15-
Stable tag: 9.1.3
15+
Stable tag: 9.1.4
1616
License: MIT License
1717
License URI: https://opensource.org/licenses/MIT
1818

sass/features/_gravity-forms.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ body *[aria-invalid="true"] {
188188
background-color: transparent;
189189
border: 2px solid var(--color-success);
190190
color: var(--color-success);
191-
font-size: var(--font-size-default);
191+
font-size: var(--font-size-paragraph);
192192
font-weight: var(--font-weight-semibold);
193193
padding: 2rem;
194194
}

sass/variables/_spacings.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@
2020
--padding-container-horizontal: 6.4rem;
2121
}
2222

23+
// When there's no longer room for container to fit with wider white space
24+
@media (max-width: 700px) {
25+
--padding-container-horizontal: 2rem;
26+
}
27+
2328
// When navigation transforms to a responsive hamburger menu
2429
@media (max-width: $width-max-mobile) {
2530
--padding-site-header-vertical: 2rem;

style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Theme URI: https://github.com/digitoimistodude/air-light
44
Author: Digitoimisto Dude Oy
55
Author URI: https://www.dude.fi
66
Description: Hi. I'm a starter theme called <code>Air-light</code>, or <em>air</em>, if you like. I'm a theme based on Automattic's underscores and I'm meant for hacking so don't use me as a <em>Parent Theme</em> as-is. Instead try turning me into the next, most awesome, WordPress theme out there. That's what I'm here for.
7-
Version: 9.1.3
7+
Version: 9.1.4
88
99
------8<----------
1010
Please do this before your actual theme is ready to go live:

0 commit comments

Comments
 (0)