diff options
author | Andreas Kling <kling@serenityos.org> | 2021-10-19 18:49:16 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-10-19 19:19:29 +0200 |
commit | 989c0b23fee74cf23f3b6fe4ea4c2c00be4f8d64 (patch) | |
tree | 7910e8968203721939d463fdec7a361daee26a03 | |
parent | ff45eb7fb149dd167b9d6b30762068a567133162 (diff) | |
download | serenity-989c0b23fee74cf23f3b6fe4ea4c2c00be4f8d64.zip |
LibWeb: Use the correct initial value for the CSS 'align-items' property
-rw-r--r-- | Userland/Libraries/LibWeb/CSS/ComputedValues.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/CSS/ComputedValues.h b/Userland/Libraries/LibWeb/CSS/ComputedValues.h index ae0c51b002..edad3d0254 100644 --- a/Userland/Libraries/LibWeb/CSS/ComputedValues.h +++ b/Userland/Libraries/LibWeb/CSS/ComputedValues.h @@ -30,7 +30,7 @@ public: static CSS::FlexDirection flex_direction() { return CSS::FlexDirection::Row; } static CSS::FlexWrap flex_wrap() { return CSS::FlexWrap::Nowrap; } static CSS::JustifyContent justify_content() { return CSS::JustifyContent::FlexStart; } - static CSS::AlignItems align_items() { return CSS::AlignItems::FlexStart; } + static CSS::AlignItems align_items() { return CSS::AlignItems::Stretch; } static CSS::Overflow overflow() { return CSS::Overflow::Visible; } static CSS::BoxSizing box_sizing() { return CSS::BoxSizing::ContentBox; } static CSS::PointerEvents pointer_events() { return CSS::PointerEvents::Auto; } |