изменение стиля, фикс демонстрации иконки

This commit is contained in:
2026-08-12 11:48:35 +03:00
parent ab949ee9c2
commit e07d6f70e3
6 changed files with 21 additions and 17 deletions

View File

@@ -108,7 +108,11 @@ render_forms = function(
} else {
shiny::tagList(
if (!is.na(form_label)) {
shiny::span(form_label, style = "color: #444444; font-weight: 550; line-height: 1.4;")
if (form_type == "description_header") {
shiny::span(form_label, class = "description-header", style = "color: #444444; font-weight: 550; line-height: 1.4;")
} else {
shiny::span(form_label, style = "color: #444444; font-weight: 550; line-height: 1.4;")
}
# если в схеме есть поле с описанием - добавляем его следующей строчкой
},
if (!is.na(description) && !is.na(form_label)) shiny::br(),