Skip to content

Commit a2c6054

Browse files
update
1 parent f6e61d5 commit a2c6054

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

assets/css/widgets/nav-menu.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
left: 0;
8484
z-index: 1000;
8585
background-color: rgba(0, 0, 0, 0.5);
86-
height: 100%;
86+
height: 100vh;
8787
width: 100%;
8888
transition: 0.4s;
8989
opacity: 0;

assets/css/widgets/nav-menu.min.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.

assets/src/scss/widgets/nav-menu.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@
9191
left: 0;
9292
z-index: 1000;
9393
background-color: rgba(0, 0, 0, .5);
94-
height: 100%;
95-
width: 100%;
94+
height: 100vh;
95+
width: 100vw;
9696
transition: .4s;
9797
opacity: 0;
9898
visibility: hidden;

inc/theme-builder/theme-builder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ public function get_current_post_by_condition( $tmpType = '' ) {
526526
*
527527
* @return boolean | int
528528
*/
529-
public function get_template_popup_id( $tmpType = '' , $meta = [] ) {
529+
public function get_template_popup_id( $tmpType , $meta = [] ) {
530530
$template_ID = self::get_current_popup_by_condition( $tmpType, $meta );
531531

532532
if ( $template_ID ) {
@@ -536,7 +536,7 @@ public function get_template_popup_id( $tmpType = '' , $meta = [] ) {
536536
return false;
537537
}
538538

539-
public function get_current_popup_by_condition( $tmpType = '' , $extraConditions) {
539+
public function get_current_popup_by_condition( $tmpType , $extraConditions) {
540540
$typeCondition = [
541541
[
542542
'key' => self::CPT_META . '_type',

0 commit comments

Comments
 (0)