Frontend update
This commit is contained in:
9
client/src/components/MoonDot.jsx
Normal file
9
client/src/components/MoonDot.jsx
Normal file
@@ -0,0 +1,9 @@
|
||||
// The little glowing moon used in the logo, login, and maintenance screens.
|
||||
export default function MoonDot({ size = 13, glow = 0.45 }) {
|
||||
return (
|
||||
<span
|
||||
className="moon"
|
||||
style={{ width: size, height: size, boxShadow: `0 0 ${size * 0.8}px rgba(216,226,239,${glow})` }}
|
||||
/>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user