feat(visual): add cosmetic features

This commit is contained in:
doryan 2024-08-17 21:40:39 +04:00
parent 9d42c56423
commit c1c9543868

View File

@ -36,7 +36,14 @@ pub fn signal_reducing_page(wrapper: &Box) {
vertical: Align::Fill,
};
let input_labels: [&str; 6] = ["l, м:", "Rм, Ом", "Cм, пФ:", "Rи, Ом:", "Vи, мВ", "f, мГц:"];
let input_labels: [&str; 6] = [
"l, м:",
"R<sub>м</sub>, Ом",
"C<sub>м</sub>, пФ:",
"R<sub>и</sub>, Ом:",
"V<sub>и</sub>, мВ",
"f, мГц:",
];
let all_inputs: Vec<Input<Entry>> = input_labels
.iter()
@ -44,6 +51,7 @@ pub fn signal_reducing_page(wrapper: &Box) {
.map(|(index, label)| {
let elem = Input::<Entry>::builder()
.label(label)
.markup(true)
.margins(MarginData::EqualsMargin(6))
.align(input_label_alignment)
.build_entry(None);