Skip to content

Commit

Permalink
fix: ext background gradient (#382)
Browse files Browse the repository at this point in the history
  • Loading branch information
dni authored Jul 9, 2024
1 parent c7f177d commit 4c72662
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ const Details = () => {
<FaSolidDownload /> Download
</a>
<a
href={`${ext.repo}/releases/${ext.version}`}
href={`${ext.repo}/releases/v${ext.version}`}
target="_blank"
class="btn">
Release Notes
Expand Down
12 changes: 8 additions & 4 deletions src/index.scss
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
$pink: #ff1ee6;
$bg: #1f2234;

html,
body {
html {
background: $bg;
color: white;
font-family: sans-serif;
background: radial-gradient(
89.59% 89.59% at 50% 0%,
rgb(62, 5, 55) 0%,
rgba(37, 124, 255, 0.01) 47.4%,
rgba(13, 16, 23, 0) 100%
),
#0d1017;
background-repeat: no-repeat;
}

html,
body {
color: white;
font-family: sans-serif;
}
body {
max-width: 1200px;
Expand Down

0 comments on commit 4c72662

Please sign in to comment.