Created
March 25, 2024 06:17
-
-
Save livemehere/d4fbf004646d27c9fa7287a88eb235c4 to your computer and use it in GitHub Desktop.
React full page layout tips
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
html, | |
body, | |
#root { | |
width: 100%; | |
height: 100%; | |
} | |
* { | |
&::-webkit-scrollbar { | |
width: 12px; | |
@apply bg-neutral-700; | |
} | |
&::-webkit-scrollbar-thumb { | |
@apply bg-neutral-500; | |
border-radius: 18px; | |
border: 2px solid transparent; | |
background-clip: padding-box; | |
} | |
} | |
#layout { | |
@apply h-full bg-neutral-900 text-white; | |
--app-bar-height: 40px; | |
padding-top: var(--app-bar-height); | |
#app-bar { | |
-webkit-app-region: drag; | |
height: var(--app-bar-height); | |
@apply fixed left-0 right-0 top-0 flex items-center justify-center; | |
} | |
main { | |
overflow-y: scroll; | |
height: 100%; | |
} | |
} |
Author
livemehere
commented
Mar 25, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment