Adds a more proper infinate scroller

It probally does more, but I can't remember what lol
This commit is contained in:
MathMan05 2024-07-20 14:36:19 -05:00
parent d28ccb68be
commit ec6ab101c0
22 changed files with 572 additions and 430 deletions

View file

@ -74,6 +74,8 @@ th {
flex-wrap: nowrap;
flex-direction: column;
max-height: 20in;
flex-shrink: 0;
width: 100%;
}
pre {
background-color: var(--code-bg);
@ -215,6 +217,8 @@ img {
vertical-align: middle;
max-width: 3in;
max-height: 3in;
width: auto;
height: auto;
}
#page {
@ -242,8 +246,8 @@ img {
font-weight: normal;
}
#messagecontainer {
overflow-y: auto;
.messagecontainer {
overflow-y: hidden;
display: flex;
max-width: 100%;
flex-shrink: 1;
@ -725,7 +729,7 @@ textarea {
}
.servernamediv {
/* width: 100%; */
width: 99%;
/* max-width: 100%; */
}
@ -1169,6 +1173,7 @@ span {
/* margin-bottom: 1in; */
/* padding-bottom: .1in; */
align-items: flex-start;
width: 100%;
}
.settingbuttons{
padding-top:.075in;
@ -1348,6 +1353,12 @@ span {
overflow: hidden;
flex-wrap: wrap;
width: 100%;
flex-direction: row;
flex-direction: column;
max-height:100in;
}
<<<<<<< Updated upstream
=======
.sizeupdown{
height:4in;
}
>>>>>>> Stashed changes