1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
mod builder;
mod display;
use super::*;
#[derive(Copy, Clone, Debug)]
enum TailwindSizingKind {
Width,
MinWidth,
MaxWidth,
Height,
MinHeight,
MaxHeight,
}
#[derive(Copy, Clone, Debug)]
enum SizingUnit {
Min,
Max,
Fit,
Auto,
Full,
Screen,
Fraction(usize, usize),
Length(LengthUnit),
}
#[doc = include_str!("sizing.md")]
#[derive(Copy, Clone, Debug)]
pub struct TailwindSizing {
kind: TailwindSizingKind,
size: SizingUnit,
}