21 lines
385 B
SCSS
21 lines
385 B
SCSS
button,.button {
|
|
min-width: 20rem;
|
|
}
|
|
.hero {
|
|
button,.button {
|
|
min-width: 20vw;
|
|
color: $button-color-alt;
|
|
font-size: $global-font-size*1.3;
|
|
border-color: $button-color-alt;
|
|
border-radius: 4rem;
|
|
&:hover{
|
|
color: $anchor-color;
|
|
border-color: $anchor-color;
|
|
}
|
|
}
|
|
}
|
|
.wpcf7-form-control[type="submit"] {
|
|
@extend .button;
|
|
min-width: unset;
|
|
}
|