layoutcss_parser/utilities/
line_height.rs1use indoc::formatdoc;
2use std::collections::HashSet;
3pub fn line_height_css(value: &str, set: &mut HashSet<String>) {
4 set.insert(formatdoc!(
5 r#"
6 [layout~="line-height:{value}"]{{
7 line-height: {value};
8 }}
9 "#
10 ));
11}