Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.0.3 - [November 25, 2025]

- Tweak: Further editor styles

## 2.0.2 - [November 20, 2025]

- Fixed: Interest Form has appropriate "Reply-To" header
Expand Down
2 changes: 1 addition & 1 deletion inc/theme/class-rest-router.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public function enqueue_interest_form_script() {
wp_enqueue_script(
'cloudflare',
'https://challenges.cloudflare.com/turnstile/v0/api.js',
array( 'global' ),
array(),
null, // phpcs:ignore WordPress.WP.EnqueuedResourceParameters.MissingVersion
array(
'strategy' => 'async',
Expand Down
27 changes: 27 additions & 0 deletions src/styles/base/_editor-utilities.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
.h-100 {
height: 100% !important;
}

.w-100 {
width: 100% !important;
}

.flex-grow-1 {
flex-grow: 1 !important;
}

.flex-shrink-1 {
flex-shrink: 1 !important;
}

.overflow-hidden {
overflow: hidden !important;
}

.align-items-stretch {
align-items: stretch !important;
}

.mt-auto {
margin-top: auto !important;
}
1 change: 1 addition & 0 deletions src/styles/editor.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Base Styles
@use "./base/base";
@use "./base/utilities";
@use "./base/editor-utilities";
@use "./components/footer";

// Block Overrides
Expand Down
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Theme URI: https://github.com/macrosbysara/wordpress-theme
Author: KJ Roelke
Author URI: https://kjroelke.online
Description: A WordPress Theme built for Macros By Sara site
Version: 2.0.2
Version: 2.0.3
Requires at least: 6.7.0
Tested up to: 6.8.3
Requires PHP: 8.2
Expand Down