Merge pull request #30 from DEVTomatoCake/jank/typebox-consistency

Typebox scroll bar consistency
This commit is contained in:
MathMan05 2024-07-24 12:54:58 -05:00 committed by GitHub
commit d7b12fb319
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -335,7 +335,6 @@ div {
#typebox { #typebox {
font-family: "acumin-pro", "Helvetica Neue", Helvetica, Arial, sans-serif; font-family: "acumin-pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
/* font-size: 16px; */
padding: 3px; padding: 3px;
border-radius: .25cm; border-radius: .25cm;
width: 100%; width: 100%;
@ -343,9 +342,8 @@ div {
z-index: -100; z-index: -100;
max-width: 99%; max-width: 99%;
display: flex; display: flex;
max-height: fit-content;
max-height: 1.5in; max-height: 1.5in;
overflow-y: scroll; overflow-y: auto;
} }
p { p {
@ -1385,11 +1383,11 @@ span {
height:22px; height:22px;
} }
#typebox[contenteditable=false]{ #typebox[contenteditable=false]{
cursor:not-allowed; cursor:not-allowed;
} }
#typebox[contenteditable=false]:before{ #typebox[contenteditable=false]:before{
content:'You can\'t chat here'; content:'You can\'t chat here';
color:color-mix(in hsl, var(--primary-bg),var(--primary-text)); color:color-mix(in hsl, var(--primary-bg),var(--primary-text));
} }