1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:47:45 +00:00

LibWeb: Respect justify-items property of grid container

This commit is contained in:
Aliaksandr Kalenik 2023-07-14 20:57:36 +02:00 committed by Andreas Kling
parent f060f89220
commit 2138c164c9
4 changed files with 82 additions and 8 deletions

View file

@ -103,6 +103,8 @@ public:
Box const& grid_container() const { return context_box(); }
private:
CSS::JustifyItems justification_for_item(Box const& box) const;
void resolve_items_box_metrics(GridDimension const dimension);
CSSPixels m_automatic_content_height { 0 };