mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
27 lines
436 B
Zig
27 lines
436 B
Zig
pub const css = @import("./css_parser.zig");
|
|
pub const Error = css.Error;
|
|
|
|
pub const PropertyCategory = enum {
|
|
logical,
|
|
physical,
|
|
|
|
pub fn default() PropertyCategory {
|
|
return .physical;
|
|
}
|
|
};
|
|
|
|
pub const LogicalGroup = enum {
|
|
border_color,
|
|
border_style,
|
|
border_width,
|
|
border_radius,
|
|
margin,
|
|
scroll_margin,
|
|
padding,
|
|
scroll_padding,
|
|
inset,
|
|
size,
|
|
min_size,
|
|
max_size,
|
|
};
|