create files tag answer

This commit is contained in:
kuwsh1n
2024-02-29 14:43:27 +03:00
parent b18c49628f
commit 4e1ab987ca
20 changed files with 87 additions and 25 deletions

View File

@ -1,5 +1,7 @@
.myModal {
&__dialog {
&__content {
// padding: 2%;
&__header {
@ -15,6 +17,28 @@
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 {
}
}
}
}
}
}

View File

@ -0,0 +1,14 @@
.main {
width: 100%;
input {
width: 100%;
font-size: 15px;
font-family: "Montserrat", sans-serif;
border: 1px solid rgb(200, 200, 200);
color: rgb(50, 50, 50);
padding: 1%;
&::placeholder {
color: rgb(200, 200, 200);
}
}
}