mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-11-01 19:32:27 +08:00
31 lines
554 B
SCSS
31 lines
554 B
SCSS
button{
|
|
border: none;
|
|
margin: 0;
|
|
padding: 5px;
|
|
width: 100%;
|
|
display: inline-block;
|
|
outline: none;
|
|
cursor: pointer;
|
|
font-size: inherit;
|
|
border-radius: 2px;
|
|
color: inherit;
|
|
background: inherit;
|
|
|
|
&.primary{
|
|
background: var(--primary);
|
|
color: white;
|
|
}
|
|
&.secondary{
|
|
background: var(--secondary);
|
|
color: white;
|
|
}
|
|
&.emphasis{
|
|
background: var(--emphasis);
|
|
color: white
|
|
}
|
|
&.dark{
|
|
background: var(--dark);
|
|
color: white;
|
|
}
|
|
}
|