Skip to content

Commit 4e72aa3

Browse files
authored
Fix lock icon on Safari
Dev
2 parents c5d4e4f + fc1fda5 commit 4e72aa3

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

full.css

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1289,13 +1289,15 @@ body:not(.mobile) .sidebar .header .title .branch-icon:active {
12891289
stroke: currentColor;
12901290
stroke-width: 1.58px;
12911291
stroke-dasharray: 20px;
1292-
stroke-dashoffset: -3.4px;
1292+
stroke-dashoffset: 8.4px;
12931293
stroke-linecap: round;
1294+
transform: scaleX(-1);
1295+
transform-origin: center;
12941296
will-change: transform;
12951297
}
12961298

12971299
.sidebar .repo .lock.locked #shackle {
1298-
stroke-dashoffset: -1.1px;
1300+
stroke-dashoffset: 6.1px;
12991301
animation: lock-click .14s .124s var(--ease-function);
13001302
}
13011303

@@ -1309,7 +1311,7 @@ body:not(.mobile) .sidebar .header .title .branch-icon:active {
13091311

13101312
@keyframes lock-click {
13111313
50% {
1312-
transform: translateY(0.5px);
1314+
transform: scaleX(-1) translateY(0.5px);
13131315
}
13141316
}
13151317

worker/client-channel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55

66
// update worker name when updating worker
7-
const WORKER_NAME = 'codeit-worker-v521';
7+
const WORKER_NAME = 'codeit-worker-v522';
88

99

1010
// internal paths

0 commit comments

Comments
 (0)