38 lines
711 B
SCSS
38 lines
711 B
SCSS
@import '../../styles/abstracts/variables';
|
|
|
|
.stripe-connect-card {
|
|
display: flex;
|
|
background: rgba(255, 164, 28, 0.1);
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
|
|
&__content {
|
|
margin-left: 10px;
|
|
}
|
|
|
|
&__btn-connect {
|
|
margin-top: 8px;
|
|
min-width: 218px !important;
|
|
height: 40px !important;
|
|
background: $warning !important;
|
|
border: none !important;
|
|
|
|
&:hover,
|
|
&:active {
|
|
background: $warning !important;
|
|
}
|
|
|
|
> span {
|
|
text-align: center;
|
|
text-transform: uppercase;
|
|
width: 100%;
|
|
font-style: normal;
|
|
font-weight: bold;
|
|
font-size: 14px;
|
|
line-height: 24px;
|
|
color: $white !important;
|
|
letter-spacing: 1px;
|
|
}
|
|
}
|
|
}
|