File tree Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Original file line number Diff line number Diff line change 33$gutter : $grid-gutter-width / 2 ;
44$sticky-top : $navbar-height + 1rem ;
55$venue-list-width : 16rem ;
6+ $venue-list-width-xl : 24rem ;
7+ $venue-list-width-xxl : 32rem ;
68
79// Layout for venues page is
810// - On md and above - Outlook style two panel UI with the venue list on the left
@@ -48,27 +50,28 @@ $venue-list-width: 16rem;
4850
4951 .venueDetail {
5052 right : env (safe-area-inset-right );
51- left : calc (env (safe-area-inset-left ) + #{$venue-list-width + $side-nav-width-md } + #{$gutter } );
53+ left : calc (env (safe-area-inset-left ) + #{$venue-list-width } + #{$gutter } );
5254 padding : 0 $gutter env (safe-area-inset-bottom ) $gutter ;
5355 }
5456}
5557
5658@include media-breakpoint-up (xl) {
59+ .venuesList {
60+ width : $venue-list-width-xl ;
61+ }
62+
5763 .venueDetail {
58- left : calc (#{ $venue-list-width + $side-nav -width-lg } + #{$gutter } );
64+ left : calc (env ( safe-area-inset-left ) + #{ $venue-list -width-xl } + #{$gutter } );
5965 }
6066}
6167
6268@media (min-width : 90rem ) {
6369 .venuesList {
64- right : 60rem ;
65- left : $side-nav-width-lg ;
66- width : auto ;
70+ width : $venue-list-width-xxl ;
6771 }
6872
6973 .venueDetail {
70- left : auto ;
71- width : 60rem ;
74+ left : calc (env (safe-area-inset-left ) + #{$venue-list-width-xxl } + #{$gutter } );
7275 }
7376}
7477
You can’t perform that action at this time.
0 commit comments