64 lines
1.1 KiB
SCSS
64 lines
1.1 KiB
SCSS
$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;
|
|
}
|
|
}
|
|
|
|
.upgrade-account {
|
|
width: 190px;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|
|
|
|
.add-account-button {
|
|
margin-right: 12px;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|