Skip to content

Instantly share code, notes, and snippets.

@livemehere
Created March 25, 2024 06:17
Show Gist options
  • Save livemehere/d4fbf004646d27c9fa7287a88eb235c4 to your computer and use it in GitHub Desktop.
Save livemehere/d4fbf004646d27c9fa7287a88eb235c4 to your computer and use it in GitHub Desktop.
React full page layout tips
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%;
}
}
@livemehere
Copy link
Author

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment