0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-06 20:40:08 -05:00

style(console): adjust textarea scrollbar position (#5275)

This commit is contained in:
Xiao Yijun 2024-01-24 10:41:54 +08:00 committed by GitHub
parent 54b3ff2620
commit 8ec4efe1b9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -30,6 +30,10 @@
resize: none; resize: none;
padding: 0; padding: 0;
// Leave space for scrollbar by setting `box-sizing` and `padding-right`
box-sizing: content-box;
padding-right: 10px;
&::placeholder { &::placeholder {
color: var(--color-placeholder); color: var(--color-placeholder);
} }