summaryrefslogtreecommitdiff
path: root/src/select/properties/display.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/select/properties/display.c')
-rw-r--r--src/select/properties/display.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/select/properties/display.c b/src/select/properties/display.c
index 40c2e3e..510d24a 100644
--- a/src/select/properties/display.c
+++ b/src/select/properties/display.c
@@ -71,6 +71,12 @@ css_error css__cascade_display(uint32_t opv, css_style *style,
case DISPLAY_NONE:
value = CSS_DISPLAY_NONE;
break;
+ case DISPLAY_FLEX:
+ value = CSS_DISPLAY_FLEX;
+ break;
+ case DISPLAY_INLINE_FLEX:
+ value = CSS_DISPLAY_INLINE_FLEX;
+ break;
}
}