Spaces:
Running
Running
File size: 1,167 Bytes
79278ec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
.comment {
.reaction {
display: flex;
margin: 10px;
gap: 5px;
align-items: flex-end;
}
.required_field::before {
content: "*";
color: red;
font-size: 20px;
margin-right: 3px;
}
.reaction_input {
text-align: right;
align-items: center;
justify-content: flex-end;
margin: 5px;
.input {
width: 70px;
}
}
.icon_btn {
background-color: var(--white-color);
outline: none;
border: 0;
cursor: pointer;
height: 20px;
}
.thumbs_up,
.thumbs_down {
height: 19px;
width: 19px;
color: var(--placeholder-color);
}
.submit_btn {
display: flex;
margin-top: 15px;
justify-content: flex-end;
}
.feedback_container {
display: flex;
justify-content: center;
.feedback_message {
margin-top: 10px;
max-width: 300px;
padding: 10px;
background-color: var(--success-bg-color);
color: var(--success-color);
border: 1px solid var(--success-border-color);
border-radius: 4px;
opacity: 0;
transition: opacity 0.5s ease-in-out;
}
.feedback_message.show {
opacity: 1;
}
}
}
|