Last active
November 15, 2019 10:50
-
-
Save meddokss/d813d2253f74b61e8c012eb4caeb77f9 to your computer and use it in GitHub Desktop.
This file contains 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 characters
const SInfiniteScroller = styled(({ isInitFetching, ...rest }) => ( | |
<InfiniteScroller {...rest} /> | |
))(({ isInitFetching }) => | |
isInitFetching | |
? css` | |
height: 100%; | |
display: grid; | |
grid-template-rows: 1fr; | |
padding: 45px 0 120px; | |
` | |
: css` | |
height: 100%; | |
display: grid; | |
grid-template-rows: 1fr; | |
min-height: 185px; | |
align-items: flex-start; | |
`, | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment