18 lines
288 B
SCSS
18 lines
288 B
SCSS
.minicartCheckoutButton {
|
|
:local(button) {
|
|
background-color: #000000;
|
|
border-radius: 0;
|
|
border: none;
|
|
|
|
&:hover {
|
|
background-color: #000000;
|
|
filter: opacity(88%);
|
|
}
|
|
|
|
&:active {
|
|
background-color: #000000;
|
|
filter: opacity(100%);
|
|
}
|
|
}
|
|
}
|