diff options
author | bptato <nincsnevem662@gmail.com> | 2022-12-07 19:02:56 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2022-12-07 19:02:56 +0100 |
commit | 31162225df672187e4b73423ac2f4bc25937fd3f (patch) | |
tree | 7c52d54677897b4eaa258592bfa96d3b7b303505 /src/layout | |
parent | eb61a176754a565a5c53562993897388fa2d260c (diff) | |
download | chawan-31162225df672187e4b73423ac2f4bc25937fd3f.tar.gz |
Add multiple text-decoration, overline emulation
Diffstat (limited to 'src/layout')
-rw-r--r-- | src/layout/box.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/layout/box.nim b/src/layout/box.nim index 3a8dc41c..4a0b0fcd 100644 --- a/src/layout/box.nim +++ b/src/layout/box.nim @@ -74,7 +74,7 @@ type ComputedFormat* = ref object fontstyle*: CSSFontStyle fontweight*: int - textdecoration*: CSSTextDecoration + textdecoration*: set[CSSTextDecoration] color*: RGBAColor node*: StyledNode |