Skip to content

Commit 651fd33

Browse files
authored
Merge pull request #103 from codeitcodes/dev
Dev
2 parents 07b0ac1 + cc1db88 commit 651fd33

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

dark-theme.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

full.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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, 0px)));
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, 0px)));
771771
}
772772
to {
773773
transform: translateX(var(--sidebar-width));

service-worker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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
77
const FILES_TO_CACHE = [

0 commit comments

Comments
 (0)