first commit
This commit is contained in:
55
src/styles/buttons.scss
Normal file
55
src/styles/buttons.scss
Normal file
@@ -0,0 +1,55 @@
|
||||
$button-height: 45px;
|
||||
$button-padding: 0 5px;
|
||||
|
||||
.primary-button {
|
||||
height: $button-height;
|
||||
padding: $button-padding;
|
||||
min-width: 150px;
|
||||
background-color: #1a76c7;
|
||||
color: #fff;
|
||||
border-radius: 8px;
|
||||
border-style: none;
|
||||
&:hover {
|
||||
border: 2px solid #f27300;
|
||||
}
|
||||
}
|
||||
|
||||
.primary-disabled {
|
||||
height: $button-height;
|
||||
padding: $button-padding;
|
||||
min-width: 156px !important;
|
||||
background-color: #87beee;
|
||||
color: #e7e7e7;
|
||||
border-radius: 8px;
|
||||
border-style: none;
|
||||
&:hover {
|
||||
border: none;
|
||||
}
|
||||
}
|
||||
|
||||
.secondary-button {
|
||||
height: $button-height;
|
||||
padding: $button-padding;
|
||||
min-width: 150px;
|
||||
color: #1a76c7;
|
||||
background-color: #fff;
|
||||
border-radius: 8px;
|
||||
border: 1px solid #1a76c7;
|
||||
&:hover {
|
||||
background-color: var(--background-blue) !important;
|
||||
}
|
||||
}
|
||||
|
||||
.cancel-button {
|
||||
height: $button-height;
|
||||
padding: $button-padding;
|
||||
min-width: 115px;
|
||||
color: #1a76c7;
|
||||
background-color: #fff;
|
||||
border-radius: 8px;
|
||||
border: 1px solid #1a76c7;
|
||||
&:hover {
|
||||
background-color: var(--background-blue) !important;
|
||||
color: #1a76c7;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user