40 lines
657 B
SCSS
40 lines
657 B
SCSS
.modalConfirmTracker {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 40px 40px 10px;
|
|
|
|
&__title {
|
|
font-size: 24px;
|
|
font-weight: 500;
|
|
max-width: 360px;
|
|
margin-bottom: 24px;
|
|
text-align: center;
|
|
}
|
|
|
|
&__info {
|
|
font-size: 15px;
|
|
font-weight: 300;
|
|
max-width: 320px;
|
|
text-align: center;
|
|
margin-bottom: 30px;
|
|
|
|
span {
|
|
font-weight: 700;
|
|
line-height: 25px;
|
|
}
|
|
}
|
|
|
|
&__btn {
|
|
border-radius: 44px;
|
|
background: #52B709;
|
|
outline: none;
|
|
border: none;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
line-height: 32px;
|
|
color: #FFF;
|
|
padding: 9px 37px;
|
|
}
|
|
}
|