From 989c0b23fee74cf23f3b6fe4ea4c2c00be4f8d64 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 19 Oct 2021 18:49:16 +0200 Subject: [PATCH] LibWeb: Use the correct initial value for the CSS 'align-items' property --- Userland/Libraries/LibWeb/CSS/ComputedValues.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }