💂♂️ fixed lint and prittier
This commit is contained in:
@@ -25,15 +25,13 @@ export function ReadingProgress() {
|
||||
className="h-full bg-gradient-to-r from-[var(--neon-cyan)] via-[var(--neon-magenta)] to-[var(--neon-pink)] transition-all duration-150"
|
||||
style={{
|
||||
width: `${progress}%`,
|
||||
boxShadow: progress > 0 ? '0 0 8px var(--neon-cyan)' : 'none'
|
||||
boxShadow: progress > 0 ? '0 0 8px var(--neon-cyan)' : 'none',
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="fixed top-4 right-4 z-50 px-3 py-1.5 bg-[rgb(var(--bg-primary))] border-2 border-[var(--neon-cyan)] text-xs font-mono font-bold text-[var(--neon-cyan)] relative">
|
||||
<span className="relative z-10">
|
||||
[{Math.round(progress)}%]
|
||||
</span>
|
||||
<span className="relative z-10">[{Math.round(progress)}%]</span>
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user