mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-10-30 01:26:43 +08:00
27 lines
471 B
SCSS
27 lines
471 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;
|
|
}
|
|
&.emphasis{
|
|
background: var(--emphasis);
|
|
color: white
|
|
}
|
|
&.dark{
|
|
background: var(--dark);
|
|
color: white;
|
|
}
|
|
}
|