Skip to content

Commit

Permalink
Merge branch 'release/1.10.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Hemberger committed May 2, 2019
2 parents efb1dc5 + 6b9b425 commit 3e7dfb9
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 1.10.1 (5/2/19)
* Fixed: Aspect ratio vertical height issue.

## 1.10.0 (5/2/19)
* Added: Logo and Shrink/Mobile logo sizing/spacing settings.
* Added: Setting to define when the mobile menu should display.
Expand Down
16 changes: 8 additions & 8 deletions assets/css/mai-theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -1728,23 +1728,23 @@ body.has-boxed-site-container {
}

.aspect-ratio[style*="--aspect-ratio"]::before {
display: block;
content: '';
float: left;
width: 1px;
height: 0;
margin-left: -1px;
padding-bottom: calc( 100% / (var(--aspect-ratio)) );
}

.aspect-ratio[style*="--aspect-ratio"]::after {
content: '';
display: table;
clear: both;
}

.aspect-inner {
width: 100%;
height: 100%;;
height: 100%;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
padding: inherit;
}

/* ## Page Builders
Expand Down
2 changes: 1 addition & 1 deletion assets/css/mai-theme.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions mai-theme-engine.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Plugin URI: https://maitheme.com/
* Description: The Mai Theme Engine plugin
*
* Version: 1.10.0
* Version: 1.10.1
*
* GitHub URI: maithemewp/mai-theme-engine
*
Expand Down Expand Up @@ -89,7 +89,7 @@ public function __wakeup() {
private function setup_constants() {

// Plugin version.
define( 'MAI_THEME_ENGINE_VERSION', '1.10.0' );
define( 'MAI_THEME_ENGINE_VERSION', '1.10.1' );

// DB version.
define( 'MAI_THEME_ENGINE_DB_VERSION', '1400' );
Expand Down

0 comments on commit 3e7dfb9

Please sign in to comment.