style Finish Early button red in pause menu
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>main
parent
705d667949
commit
876d344441
|
|
@ -73,6 +73,15 @@
|
|||
transform: scale(0.97);
|
||||
}
|
||||
|
||||
.pauseBtnDanger {
|
||||
background: rgba(220, 38, 38, 0.2);
|
||||
border-color: #dc2626;
|
||||
}
|
||||
|
||||
.pauseBtnDanger:hover {
|
||||
background: rgba(220, 38, 38, 0.4);
|
||||
}
|
||||
|
||||
.pauseBtnSecondary {
|
||||
background: transparent;
|
||||
border-color: rgba(255, 255, 255, 0.3);
|
||||
|
|
|
|||
|
|
@ -151,7 +151,7 @@ export function GamePage() {
|
|||
CONTINUE
|
||||
</button>
|
||||
<button
|
||||
className={`${styles.pauseBtn} font-title`}
|
||||
className={`${styles.pauseBtn} ${styles.pauseBtnDanger} font-title`}
|
||||
onClick={handleSongEnd}
|
||||
>
|
||||
FINISH EARLY
|
||||
|
|
|
|||
Loading…
Reference in New Issue