Skip to content

Commit

Permalink
refactor(projects)!: replace flex-col with flex-c avoid conflict …
Browse files Browse the repository at this point in the history
…`flex-col`
  • Loading branch information
honghuangdc committed Dec 6, 2024
1 parent 2510136 commit bc16316
Showing 1 changed file with 6 additions and 30 deletions.
36 changes: 6 additions & 30 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,40 +8,16 @@ export function presetSoybeanJS(): Preset {
'flex-center': 'flex justify-center items-center',
'flex-x-center': 'flex justify-center',
'flex-y-center': 'flex items-center',
'flex-col': 'flex flex-col',
'flex-col-center': 'flex-center flex-col',
'flex-col-stretch': 'flex-col items-stretch',
'flex-c': 'flex flex-col',
'flex-c-center': 'flex-center flex-col',
'flex-c-stretch': 'flex-c items-stretch',
'i-flex-center': 'inline-flex justify-center items-center',
'i-flex-x-center': 'inline-flex justify-center',
'i-flex-y-center': 'inline-flex items-center',
'i-flex-col': 'flex-col inline-flex',
'i-flex-col-center': 'flex-col i-flex-center',
'i-flex-col-stretch': 'i-flex-col items-stretch',
'i-flex-c': 'inline-flex flex-col',
'i-flex-c-center': 'i-flex-center flex-col',
'i-flex-c-stretch': 'i-flex-c items-stretch',
'flex-1-hidden': 'flex-1 overflow-hidden'
},
{
'absolute-lt': 'absolute left-0 top-0',
'absolute-lb': 'absolute left-0 bottom-0',
'absolute-rt': 'absolute right-0 top-0',
'absolute-rb': 'absolute right-0 bottom-0',
'absolute-tl': 'absolute-lt',
'absolute-tr': 'absolute-rt',
'absolute-bl': 'absolute-lb',
'absolute-br': 'absolute-rb',
'absolute-center': 'absolute-lt flex-center size-full',
'fixed-lt': 'fixed left-0 top-0',
'fixed-lb': 'fixed left-0 bottom-0',
'fixed-rt': 'fixed right-0 top-0',
'fixed-rb': 'fixed right-0 bottom-0',
'fixed-tl': 'fixed-lt',
'fixed-tr': 'fixed-rt',
'fixed-bl': 'fixed-lb',
'fixed-br': 'fixed-rb',
'fixed-center': 'fixed-lt flex-center size-full'
},
{
'nowrap-hidden': 'overflow-hidden whitespace-nowrap',
'ellipsis-text': 'nowrap-hidden text-ellipsis'
}
]
};
Expand Down

0 comments on commit bc16316

Please sign in to comment.