17 lines
304 B
SCSS
17 lines
304 B
SCSS
.squared-btn {
|
|
background-color: var(--primary);
|
|
border: none;
|
|
color: white;
|
|
font-size: 1.2rem;
|
|
padding: 1rem 4rem;
|
|
text-transform: uppercase;
|
|
transition: background-color 0.5s ease-in-out;
|
|
width: 100%;
|
|
|
|
&:hover {
|
|
background-color: var(--primaryDark);
|
|
cursor: pointer;
|
|
}
|
|
|
|
}
|