summaryrefslogtreecommitdiff
path: root/Libraries/LibHTML/CSS/LengthBox.h
blob: 46fa6c5cc925ce049c2d0338f877a8eb44a7b4ee (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once

#include <LibHTML/CSS/Length.h>

struct LengthBox {
    Length top;
    Length right;
    Length bottom;
    Length left;
};