html,
body {
  height: 100vh;
}

body {
  display: flex;
  background-color: #eee;
}

#root {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: transparent !important;
}

::-webkit-scrollbar-track,
::-webkit-scrollbar-corner {
  background: transparent !important;
}

::-webkit-scrollbar-thumb {
  background: #888 !important;
  border: 1px solid transparent !important;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #757575 !important;
}
