Created
September 25, 2020 18:32
-
-
Save chadspencer/6fdafe1b484fc91172c1b9b3f30a25be to your computer and use it in GitHub Desktop.
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 characters
const container = { | |
maxHeight: 600, | |
overflowY: 'auto', | |
':before': { | |
background: 'linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,0.1) 100%)', | |
content: '""', | |
display: 'block', | |
height: 12, | |
left: 0, | |
marginBottom: '-12px', | |
position: 'absolute', | |
top: 35, | |
top: 'var(--header-height)', | |
width: '100%', | |
}, | |
':after': { | |
background: 'linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,0.1) 100%)', | |
bottom: 0, | |
content: '""', | |
display: 'block', | |
height: 12, | |
left: 0, | |
marginTop: '-12px', | |
position: 'absolute', | |
width: '100%', | |
}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment