Skip to content

Commit 1f3e256

Browse files
Merge branch 'main' into develop
2 parents 8d1d11f + c3678b6 commit 1f3e256

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

src/assets/styles/404.css

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,14 @@
1010
}
1111

1212
.error-container::before {
13-
content: "";
13+
content: '';
1414
position: absolute;
1515
inset: 0;
16-
background: radial-gradient(circle at 20% 30%, light-dark(#3b82f6, #ffffff) 1px, transparent 1px);
16+
background:
17+
radial-gradient(circle at 20% 30%, light-dark(#3b82f6, #ffffff) 1px, transparent 1px),
18+
radial-gradient(circle at 80% 70%, light-dark(#3b82f6, #ffffff) 1px, transparent 1px);
19+
background-size: 100px 100px;
20+
animation: sparkle 3s linear infinite;
1721
}
1822

1923
@keyframes sparkle {
@@ -141,3 +145,4 @@
141145
width: 150px;
142146
}
143147
}
148+

src/pages/404.astro

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ const meta = {
77
description: "Looks like this page took a wrong turn! Let's guide you back to learning."
88
};
99
---
10-
1110
<BaseLayout meta={meta}>
1211
<div class="error-container">
1312
<div class="content">

0 commit comments

Comments
 (0)