File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -292,7 +292,7 @@ cd-el {
292292 z-index : 1 ;
293293 margin-right : -100% ;
294294 transform : translateX (-100% );
295- padding-left : 13.5px ;
295+ padding-left : calc ( 13.5px + env (safe-area-inset-left)) ;
296296 padding-right : 13.5px ;
297297}
298298
Original file line number Diff line number Diff line change @@ -755,7 +755,7 @@ body.notransition .sidebar {
755755 pointer-events : none;
756756 background : # 568af2 ;
757757 background : var (--rosemary-lighter );
758- transform : translateX (-100% );
758+ transform : translateX (calc ( -100% - env (safe-area-inset-left , 0 px )) );
759759 overscroll-behavior : none;
760760 will-change : transform;
761761 z-index : 1000 ;
@@ -767,7 +767,7 @@ body.notransition .sidebar {
767767
768768@keyframes loader {
769769 from {
770- transform : translateX (-100% );
770+ transform : translateX (calc ( -100% - env (safe-area-inset-left , 0 px )) );
771771 }
772772 to {
773773 transform : translateX (var (--sidebar-width ));
Original file line number Diff line number Diff line change 11'use strict' ;
22
33// update cache names any time any of the cached files change
4- const CACHE_NAME = 'static-cache-v311 ' ;
4+ const CACHE_NAME = 'static-cache-v314 ' ;
55
66// list of files to cache
77const FILES_TO_CACHE = [
You can’t perform that action at this time.
0 commit comments