mirror of
https://github.com/remvze/moodist.git
synced 2026-03-11 06:23:13 +08:00
refactor: seperate buttons
This commit is contained in:
27
src/components/buttons/play/play.module.css
Normal file
27
src/components/buttons/play/play.module.css
Normal file
@@ -0,0 +1,27 @@
|
||||
.playButton {
|
||||
display: flex;
|
||||
width: 150px;
|
||||
height: 45px;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border: none;
|
||||
border-radius: 100px;
|
||||
border-top: 2px solid #818cf8;
|
||||
border-bottom: 3px solid #4f46e5;
|
||||
background-color: #6366f1;
|
||||
color: var(--color-foreground);
|
||||
cursor: pointer;
|
||||
font-family: var(--font-heading);
|
||||
font-size: var(--font-base);
|
||||
line-height: 0;
|
||||
outline: none;
|
||||
|
||||
&:disabled,
|
||||
&.disabled {
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
& span {
|
||||
font-size: var(--font-lg);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user