Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianGonz97 committed Jul 15, 2024
1 parent 90add9f commit 239cf9d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/app.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en" style="color-scheme: dark">
<head>
<meta charset="utf-8" />
Expand Down
8 changes: 6 additions & 2 deletions src/styles/app.postcss
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,9 @@
&[aria-selected] {
background: #ffffff;
color: var(--gray12);
box-shadow: 0px 2px 5px -2px rgb(0 0 0 / 15%), 0 1px 3px -1px rgb(0 0 0 / 20%);
box-shadow:
0px 2px 5px -2px rgb(0 0 0 / 15%),
0 1px 3px -1px rgb(0 0 0 / 20%);
}
}
}
Expand Down Expand Up @@ -400,7 +402,9 @@
border-radius: inherit;
padding: var(--size);
background: linear-gradient(to top, var(--gray1), var(--gray7));
mask: linear-gradient(black, black) content-box, linear-gradient(black, black);
mask:
linear-gradient(black, black) content-box,
linear-gradient(black, black);
mask-composite: exclude;
transform: translateZ(0);
}
Expand Down
5 changes: 4 additions & 1 deletion src/styles/code.postcss
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@
right: 12px;
color: var(--gray11);
cursor: copy;
transition: color 150ms ease, background 150ms ease, transform 150ms ease;
transition:
color 150ms ease,
background 150ms ease,
transform 150ms ease;

&:hover {
color: var(--gray12);
Expand Down

0 comments on commit 239cf9d

Please sign in to comment.