39 lines
850 B
SCSS
39 lines
850 B
SCSS
.b-button {
|
|
&__filled {
|
|
background: #66A5AD !important;
|
|
font-size: 15px !important;
|
|
border-radius: 8px !important;
|
|
height: 54px !important;
|
|
box-shadow: 0px 2px 4px 0px rgba(102, 165, 173, 0.32) !important;
|
|
|
|
&.danger {
|
|
background: #D93E5C !important;
|
|
box-shadow: none !important;
|
|
}
|
|
}
|
|
|
|
&__link {
|
|
color: #66A5AD !important;
|
|
font-size: 15px !important;
|
|
height: auto !important;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
&__outlined {
|
|
display: inline-flex !important;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 16px;
|
|
border-color: #66A5AD !important;
|
|
color: #66A5AD !important;
|
|
font-size: 15px !important;
|
|
border-radius: 8px !important;
|
|
height: 54px !important;
|
|
|
|
span {
|
|
margin-inline-end: 0 !important;
|
|
line-height: 15px !important;
|
|
}
|
|
}
|
|
}
|