64 lines
1.1 KiB
SCSS
Raw Normal View History

2023-07-14 03:03:33 +03:00
.backDrop {
height: 100%;
width: 100%;
2023-09-13 17:45:31 +03:00
background-color: rgba(0, 0, 0, 0.8);
2023-07-14 03:03:33 +03:00
position: fixed;
top: 0;
left: 0;
display: flex;
z-index: 11;
align-items: center;
justify-content: center;
.acceptModal {
border-radius: 20px;
2023-11-27 17:32:38 +03:00
background: linear-gradient(180deg, #fff 0%, #ebebeb 100%);
2023-07-14 03:03:33 +03:00
padding: 50px 34px 25px;
display: flex;
flex-direction: column;
align-items: center;
position: relative;
row-gap: 25px;
&__title {
max-width: 260px;
font-size: 18px;
font-weight: 500;
text-align: center;
margin-bottom: 0;
}
&__buttons {
display: flex;
column-gap: 20px;
button {
min-width: 90px;
height: 37px;
border-radius: 44px;
border: none;
font-size: 14px;
font-weight: 500;
color: white;
}
.agree {
2023-11-27 17:32:38 +03:00
background: #52b709;
2023-07-14 03:03:33 +03:00
}
.cancel {
2023-11-27 17:32:38 +03:00
background: #b0babf;
2023-07-14 03:03:33 +03:00
}
}
&__close {
position: absolute;
2023-11-27 17:32:38 +03:00
width: 14px;
height: 14px;
2023-07-14 03:03:33 +03:00
top: 15px;
right: 22px;
cursor: pointer;
}
}
}