26 lines
459 B
SCSS
26 lines
459 B
SCSS
button,
|
|
input[type="button"],
|
|
input[type="reset"],
|
|
input[type="submit"],
|
|
.button,
|
|
.wp-block-button__link {
|
|
border: 1px solid;
|
|
border-color: $color__border-button;
|
|
border-radius: 0;
|
|
background: $color__background-button;
|
|
color: $color__text-screen;
|
|
line-height: 1;
|
|
padding: 0.6em 1em 0.4em;
|
|
text-transform: uppercase;
|
|
|
|
&:hover {
|
|
border-color: $color__border-button-hover;
|
|
}
|
|
|
|
&:active,
|
|
&:focus {
|
|
border-color: $color__border-button-focus;
|
|
}
|
|
}
|
|
|