feat: add squared btn component
This commit is contained in:
16
src/app/components/squared-btn/squared-btn.scss
Normal file
16
src/app/components/squared-btn/squared-btn.scss
Normal file
@@ -0,0 +1,16 @@
|
||||
.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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user