diff options
Diffstat (limited to 'src/layout/box.nim')
-rw-r--r-- | src/layout/box.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/layout/box.nim b/src/layout/box.nim index 0a1a4cc0..9ff94f53 100644 --- a/src/layout/box.nim +++ b/src/layout/box.nim @@ -12,7 +12,7 @@ type BoxBuilder* = ref object of RootObj children*: seq[BoxBuilder] inlinelayout*: bool - specified*: CSSSpecifiedValues + specified*: CSSComputedValues node*: Node element*: Element @@ -77,7 +77,7 @@ type BlockContext* = ref object inline*: InlineContext nested*: seq[BlockContext] - specified*: CSSSpecifiedValues + specified*: CSSComputedValues viewport*: Viewport relx*: int rely*: int |