This commit is contained in:
SBD
2023-12-11 22:32:27 +03:00
parent 7598759fb8
commit 4a62440981
2 changed files with 8 additions and 1 deletions

View File

@@ -558,10 +558,15 @@ body.n_scroll{
.description_form_feedback_txt{
margin-top: 30px;
margin-bottom: 50px;
margin-bottom: 110px;
color: #000000;
width: 100%;
overflow-wrap: break-word;
}
.right_bottom_part_feedback{
position: relative;
bottom: 0;
}
.form_feedback_content{
@@ -1015,6 +1020,7 @@ body.n_scroll{
width: 100%;
flex-direction: row;
justify-content: space-between;
min-height: 250px;
}
.title_block_functional_features{

View File

@@ -12,6 +12,7 @@
<input oninput="deleteErrorsInput(this)" class="input_form_feedback{% if feedback_form.errors.contacts %} error{% endif %} el_form_feedback" id="id_contacts" name="contacts" placeholder="{{ feedback_form.contacts.label }}"{% if feedback_form.initial.contacts %} value="{{ feedback_form.initial.contacts }}"{% endif %}>
{% if feedback_form.errors.contacts %}<div class="error_input_html">{{ feedback_form.errors.contacts }}</div>{% endif %}
</div>
<div>
<label class="label_feedback_form{% if feedback_form.errors.description %} error{% endif %} standart_txt" for="id_description">{{ feedback_form.description.label }}</label>
<textarea oninput="deleteErrorsInput(this)" class="textarea_form_feedback{% if feedback_form.errors.description %} error{% endif %} el_form_feedback" id="id_description" name="description">{% if feedback_form.initial.description %}{{ feedback_form.initial.description }}{% endif %}</textarea>