Skip to content

Commit

Permalink
fix(system): fix paddingBottom typings (#242)
Browse files Browse the repository at this point in the history
  • Loading branch information
kant01ne committed Apr 16, 2021
1 parent c5c8470 commit ee01b9b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ _Before_ submitting a pull request, please make sure the following is done…
Open terminal (e.g. Terminal, iTerm, Git Bash or Git Shell) and type:

```sh-session
$ git clone https://github.com/<your_username>/smooth-ui
$ cd smooth-ui
$ git clone https://github.com/<your_username>/xstyled
$ cd xstyled
$ git checkout -b my_branch
```

Expand Down
32 changes: 16 additions & 16 deletions packages/system/src/styles/space.ts
Original file line number Diff line number Diff line change
Expand Up @@ -430,22 +430,22 @@ type PaddingBottomProp<T extends ITheme> = SystemProp<
T
>
export interface PaddingBottomProps<T extends ITheme = Theme> {
paddingBottop?: PaddingBottomProp<T>
motionSafePaddingBottop?: PaddingBottomProp<T>
motionReducePaddingBottop?: PaddingBottomProp<T>
firstPaddingBottop?: PaddingBottomProp<T>
lastPaddingBottop?: PaddingBottomProp<T>
oddPaddingBottop?: PaddingBottomProp<T>
evenPaddingBottop?: PaddingBottomProp<T>
visitedPaddingBottop?: PaddingBottomProp<T>
checkedPaddingBottop?: PaddingBottomProp<T>
focusWithinPaddingBottop?: PaddingBottomProp<T>
hoverPaddingBottop?: PaddingBottomProp<T>
focusPaddingBottop?: PaddingBottomProp<T>
focusVisiblePaddingBottop?: PaddingBottomProp<T>
activePaddingBottop?: PaddingBottomProp<T>
disabledPaddingBottop?: PaddingBottomProp<T>
placeholderPaddingBottop?: PaddingBottomProp<T>
paddingBottom?: PaddingBottomProp<T>
motionSafePaddingBottom?: PaddingBottomProp<T>
motionReducePaddingBottom?: PaddingBottomProp<T>
firstPaddingBottom?: PaddingBottomProp<T>
lastPaddingBottom?: PaddingBottomProp<T>
oddPaddingBottom?: PaddingBottomProp<T>
evenPaddingBottom?: PaddingBottomProp<T>
visitedPaddingBottom?: PaddingBottomProp<T>
checkedPaddingBottom?: PaddingBottomProp<T>
focusWithinPaddingBottom?: PaddingBottomProp<T>
hoverPaddingBottom?: PaddingBottomProp<T>
focusPaddingBottom?: PaddingBottomProp<T>
focusVisiblePaddingBottom?: PaddingBottomProp<T>
activePaddingBottom?: PaddingBottomProp<T>
disabledPaddingBottom?: PaddingBottomProp<T>
placeholderPaddingBottom?: PaddingBottomProp<T>
pb?: PaddingBottomProp<T>
motionSafePb?: PaddingBottomProp<T>
motionReducePb?: PaddingBottomProp<T>
Expand Down

0 comments on commit ee01b9b

Please sign in to comment.