mirror of
https://github.com/oven-sh/bun
synced 2026-02-15 21:32:05 +00:00
Co-authored-by: Jarred-Sumner <709451+Jarred-Sumner@users.noreply.github.com> Co-authored-by: graphite-app[bot] <96075541+graphite-app[bot]@users.noreply.github.com>
29 lines
438 B
Zig
29 lines
438 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,
|
|
};
|