Fix incorrect content box default

This commit is contained in:
Nate Butler
2024-11-09 17:10:38 -05:00
parent eba035eb5b
commit e5c738daaa

View File

@@ -18,8 +18,8 @@ impl ContentBox {
pub fn new() -> Self {
Self {
base: div(),
border: false,
fill: false,
border: true,
fill: true,
children: SmallVec::new(),
}
}