kgroad-frontend2/src/features/ReportMessage/ReportMessage.scss
2024-03-18 16:59:05 +06:00

71 lines
1.3 KiB
SCSS

.report-message {
padding: 16px;
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 30000;
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(0, 0, 0, 0.6);
&__wrapper {
max-width: 400px;
padding: 24px;
display: flex;
flex-direction: column;
gap: 16px;
background-color: white;
border-radius: 12px;
box-shadow: 0px 8px 8px -4px rgba(16, 24, 40, 0.04),
0px 20px 24px -4px rgba(16, 24, 40, 0.1);
}
&__header {
display: flex;
align-items: center;
justify-content: space-between;
}
&__text {
margin-bottom: 16px;
h4 {
margin-bottom: 4px;
color: rgb(16, 24, 40);
font-family: Inter;
font-size: 18px;
font-weight: 600;
line-height: 28px;
}
p {
color: rgb(71, 84, 103);
font-family: Inter;
font-size: 14px;
font-weight: 400;
line-height: 20px;
}
}
a {
padding: 10px 18px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
border: 1px solid rgb(72, 159, 225);
border-radius: 8px;
box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
background: rgb(72, 159, 225);
color: rgb(255, 255, 255);
font-family: Inter;
font-size: 16px;
font-weight: 600;
line-height: 24px;
}
}