44 lines
1.2 KiB
SCSS
44 lines
1.2 KiB
SCSS
.myModal {
|
|
|
|
&__dialog {
|
|
|
|
&__content {
|
|
// padding: 2%;
|
|
&__header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 2%;
|
|
h5 {
|
|
font-size: 17px;
|
|
}
|
|
i {
|
|
cursor: pointer;
|
|
font-size: 17px;
|
|
}
|
|
}
|
|
&__body {
|
|
padding: 0;
|
|
&__item {
|
|
padding: 10px 20px;
|
|
border-top: 1px solid rgb(200, 200, 200);
|
|
&__question {
|
|
&__text {
|
|
font-size: 15px;
|
|
font-family: "Montserrat", sans-serif;
|
|
}
|
|
&__comment {
|
|
font-size: 11px;
|
|
font-family: "Montserrat", sans-serif;
|
|
font-style: italic;
|
|
color: rgb(200, 200, 200);
|
|
}
|
|
}
|
|
&__answer {
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |