Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
AykutSarac committed Jul 16, 2023
1 parent 1fb7779 commit 4d1db4a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 34 deletions.
8 changes: 2 additions & 6 deletions src/components/AdTest/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,17 +45,13 @@ const AdWrapper = styled.div`
background: #fff;
box-shadow: 0 1px 4px 1px hsla(0, 0%, 0%, 0.15);
opacity: 0;
transition:
transform 0.2s ease-in-out,
opacity 0.1s ease-in-out;
transition: transform 0.2s ease-in-out, opacity 0.1s ease-in-out;
transform: scale(1) translateY(-50px);
}
& #native-button:checked + .native-overlay {
opacity: 1;
transition:
transform 0.2s ease-in-out,
opacity 0.4s ease-in-out;
transition: transform 0.2s ease-in-out, opacity 0.4s ease-in-out;
transform: scale(1) translateY(0);
}
Expand Down
24 changes: 6 additions & 18 deletions src/components/Graph/PremiumView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,32 +64,20 @@ const StyledPremiumView = styled.div`
.glowing span:nth-child(3n + 1)::before {
background: rgba(134, 255, 0, 1);
box-shadow:
0 0 20px rgba(134, 255, 0, 1),
0 0 40px rgba(134, 255, 0, 1),
0 0 60px rgba(134, 255, 0, 1),
0 0 80px rgba(134, 255, 0, 1),
0 0 0 8px rgba(134, 255, 0, 0.1);
box-shadow: 0 0 20px rgba(134, 255, 0, 1), 0 0 40px rgba(134, 255, 0, 1),
0 0 60px rgba(134, 255, 0, 1), 0 0 80px rgba(134, 255, 0, 1), 0 0 0 8px rgba(134, 255, 0, 0.1);
}
.glowing span:nth-child(3n + 2)::before {
background: rgba(255, 214, 0, 1);
box-shadow:
0 0 20px rgba(255, 214, 0, 1),
0 0 40px rgba(255, 214, 0, 1),
0 0 60px rgba(255, 214, 0, 1),
0 0 80px rgba(255, 214, 0, 1),
0 0 0 8px rgba(255, 214, 0, 0.1);
box-shadow: 0 0 20px rgba(255, 214, 0, 1), 0 0 40px rgba(255, 214, 0, 1),
0 0 60px rgba(255, 214, 0, 1), 0 0 80px rgba(255, 214, 0, 1), 0 0 0 8px rgba(255, 214, 0, 0.1);
}
.glowing span:nth-child(3n + 3)::before {
background: rgba(0, 226, 255, 1);
box-shadow:
0 0 20px rgba(0, 226, 255, 1),
0 0 40px rgba(0, 226, 255, 1),
0 0 60px rgba(0, 226, 255, 1),
0 0 80px rgba(0, 226, 255, 1),
0 0 0 8px rgba(0, 226, 255, 0.1);
box-shadow: 0 0 20px rgba(0, 226, 255, 1), 0 0 40px rgba(0, 226, 255, 1),
0 0 60px rgba(0, 226, 255, 1), 0 0 80px rgba(0, 226, 255, 1), 0 0 0 8px rgba(0, 226, 255, 0.1);
}
.glowing span:nth-child(3n + 1) {
Expand Down
12 changes: 2 additions & 10 deletions src/components/Graph/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,8 @@ const StyledEditorWrapper = styled.div<{ widget: boolean }>`
linear-gradient(90deg, var(--line-color-1) 1.5px, transparent 1.5px),
linear-gradient(var(--line-color-2) 1px, transparent 1px),
linear-gradient(90deg, var(--line-color-2) 1px, transparent 1px);
background-position:
-1.5px -1.5px,
-1.5px -1.5px,
-1px -1px,
-1px -1px;
background-size:
100px 100px,
100px 100px,
20px 20px,
20px 20px;
background-position: -1.5px -1.5px, -1.5px -1.5px, -1px -1px, -1px -1px;
background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
:active {
cursor: move;
Expand Down

0 comments on commit 4d1db4a

Please sign in to comment.