@prefixCls: lemon;
@space: 16px;

@space-h: 12px;
@space-v: 12px;

html {
  --lemon-primary-color: 35, 87, 223;
}

* {
  scrollbar-width: thin;
}

&::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

&::-webkit-scrollbar-track {
  background-color: transparent;
}

&::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 4px;

  &:hover {
    background-color: rgba(0, 0, 0, 0.5);
  }
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 4px;

  &:hover {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
