Initial commit
This commit is contained in:
21
Frontend/pages/layouts/main/sass/Button.scss
Normal file
21
Frontend/pages/layouts/main/sass/Button.scss
Normal file
@@ -0,0 +1,21 @@
|
||||
.button {
|
||||
padding: 4px 15px;
|
||||
background: var(--main-color);
|
||||
border-radius: var(--border-radius);
|
||||
text-decoration: none;
|
||||
transition-duration: .2s;
|
||||
cursor: pointer;
|
||||
font-weight: 500;
|
||||
|
||||
&.secondary {
|
||||
background: #565656;
|
||||
|
||||
&:hover {
|
||||
background: #303030;
|
||||
}
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background: var(--main-hover-color);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user