Skip to content

Commit

Permalink
Missing CSS vars
Browse files Browse the repository at this point in the history
  • Loading branch information
mgurgel committed Aug 14, 2024
1 parent 9d9939c commit 6238bf7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
}
100% {
padding: var(--sp-6) var(--sp-10);
max-height: 400px;
max-height: calc(400 * var(--px-in-rem));
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ body {
[data-platform-name="macos"] {
& .container {
background: var(--container-bg);
border-radius: 8px;
border-radius: var(--sp-2);
border: 1px solid var(--border-color);
min-width: calc(400 * var(--px-in-rem));
width: calc(504 * var(--px-in-rem));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@
flex: 0 0 var(--sp-12);
height: var(--sp-12);
width: var(--sp-12);
margin-left: -8px;
margin-top: -8px;
margin-left: calc(-1 * var(--sp-2));
margin-top: calc(-1 * var(--sp-2));
}

& .phishing .icon {
Expand Down

0 comments on commit 6238bf7

Please sign in to comment.