Created
January 23, 2022 09:42
-
-
Save sohhamm/4d7d4d7706b282bd2972a362eeefa32b to your computer and use it in GitHub Desktop.
Revisions
-
sohhamm created this gist
Jan 23, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ { utils: { mx: value => ({marginLeft: value, marginRight: value}), my: value => ({marginTop: value, marginBottom: value}), mt: value => ({marginTop: value}), mb: value => ({marginBottom: value}), mr: value => ({marginRight: value}), ml: value => ({marginLeft: value}), px: value => ({paddingLeft: value, paddingRight: value}), py: value => ({paddingTop: value, paddingBottom: value}), pt: value => ({paddingTop: value}), pb: value => ({paddingBottom: value}), pr: value => ({paddingRight: value}), pl: value => ({paddingLeft: value}), }, }