jan/web/styles/base/global.scss
Faisal Amir 053604ec28
fix: chat body scrollbar (#4737)
* fix: chat body scrollbar

* chore: update lock file

* fix: remove PluggableList
2025-02-26 13:23:03 +07:00

63 lines
1014 B
SCSS

@layer base {
img {
pointer-events: none;
}
a {
text-decoration: underline;
}
.dragable-bar {
position: absolute;
left: 0px;
top: 0px;
width: 100%;
height: 32px;
user-select: none;
-webkit-app-region: drag;
}
.unset-drag {
-webkit-app-region: no-drag;
}
.unselect {
user-select: none;
}
button,
[type='button'],
[type='reset'],
[type='submit'] {
background-color: inherit;
}
input[type='number'] {
appearance: textfield;
-moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
}
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track,
::-webkit-scrollbar-thumb {
background-clip: content-box;
border-radius: inherit;
}
::-webkit-scrollbar-track {
background: hsla(var(--scrollbar-tracker));
}
::-webkit-scrollbar-thumb {
background: hsla(var(--scrollbar-thumb));
border-radius: 20px;
}