Spaces:
Running
Running
| .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; | |
| } | |
| } | |
| } | |