* docs: Update README.md * fix: quick ask improvement Signed-off-by: James <james@jan.ai> --------- Signed-off-by: James <james@jan.ai> Co-authored-by: hieu-jan <150573299+henryh0x1@users.noreply.github.com> Co-authored-by: James <james@jan.ai>
39 lines
524 B
SCSS
39 lines
524 B
SCSS
@layer base {
|
|
img {
|
|
pointer-events: none;
|
|
}
|
|
|
|
svg {
|
|
stroke-width: 1.5;
|
|
}
|
|
|
|
.title-bar {
|
|
-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'] {
|
|
-moz-appearance: textfield;
|
|
}
|
|
|
|
input::-webkit-outer-spin-button,
|
|
input::-webkit-inner-spin-button {
|
|
-webkit-appearance: none;
|
|
margin: 0;
|
|
}
|
|
}
|