File tree Expand file tree Collapse file tree 5 files changed +17
-6
lines changed
resources/themes/architect Expand file tree Collapse file tree 5 files changed +17
-6
lines changed Original file line number Diff line number Diff line change @@ -72,11 +72,14 @@ $(document).ready(() => {
7272
7373 var resizeClass = function ( ) {
7474 var win = document . body . clientWidth ;
75- if ( win < 1250 ) {
75+ if ( win < 768 ) {
76+ $ ( '.app-container' ) . addClass ( "closed-sidebar closed-sidebar-mobile" ) ;
77+ $ ( '.app-header' ) . addClass ( "header-text-light bg-light" ) . removeClass ( "bg-dark header-text-dark" ) ;
78+ } else if ( win < 1250 ) {
7679 $ ( '.app-container' ) . addClass ( 'closed-sidebar-mobile closed-sidebar' ) ;
77- $ ( '.app-header' ) . removeClass ( "heard -text-light bg-dark" ) . addClass ( "bg-light header-text-dark" ) ;
80+ $ ( '.app-header' ) . removeClass ( "header -text-light bg-dark" ) . addClass ( "bg-light header-text-dark" ) ;
7881 } else {
79- $ ( '.app-header' ) . addClass ( "heard -text-light bg-dark" ) . removeClass ( "bg-light header-text-dark" ) ;
82+ $ ( '.app-header' ) . addClass ( "header -text-light bg-dark" ) . removeClass ( "bg-light header-text-dark" ) ;
8083 $ ( '.app-container' ) . removeClass ( 'closed-sidebar-mobile closed-sidebar' ) ;
8184 }
8285 } ;
Original file line number Diff line number Diff line change 114114 }
115115 }
116116
117+ .app-header__mobile-menu {
118+ .hamburger-inner ,
119+ .hamburger-inner ::before ,
120+ .hamburger-inner ::after {
121+ background : $gray-800 ;
122+ }
123+ }
124+
117125 }
118126
119127}
Original file line number Diff line number Diff line change 128128 .hamburger-inner ,
129129 .hamburger-inner ::before ,
130130 .hamburger-inner ::after {
131- background : rgba ( 255 , 255 , 255 , .9 ) ;
131+ background : $gray-800 ;
132132 }
133133 }
134134
Original file line number Diff line number Diff line change 2222 </div >
2323 <div class =" app-header__menu" >
2424 <span >
25- <button type =" button" class =" btn-icon btn-icon-only btn btn-sm btn-primary mobile-toggle-header-nav" >
25+ <button type =" button" class =" btn-icon btn-icon-only btn btn-sm btn-dark mobile-toggle-header-nav" >
2626 <span class =" btn-icon-wrapper" >
2727 <i class =" fas fa-ellipsis-v fa-w-6" ></i >
2828 </span >
Original file line number Diff line number Diff line change 2222 </div >
2323 <div class =" app-header__menu" >
2424 <span >
25- <button type =" button" class =" btn-icon btn-icon-only btn btn-sm btn-primary mobile-toggle-header-nav" >
25+ <button type =" button" class =" btn-icon btn-icon-only btn btn-sm btn-dark mobile-toggle-header-nav" >
2626 <span class =" btn-icon-wrapper" >
2727 <i class =" fas fa-ellipsis-v fa-w-6" ></i >
2828 </span >
You can’t perform that action at this time.
0 commit comments