Checkpoint

This commit is contained in:
Nate Butler 2023-09-07 15:33:50 -04:00
parent f7b2edb59a
commit 5fb9c60905
4 changed files with 127 additions and 51 deletions

View file

@ -105,6 +105,11 @@ fn box_prefixes() -> Vec<(&'static str, bool, Vec<TokenStream2>)> {
),
("mt", true, vec![quote! { margin.top }]),
("mb", true, vec![quote! { margin.bottom }]),
(
"my",
true,
vec![quote! { margin.top }, quote! { margin.bottom }],
),
(
"mx",
true,