Temp CSS and HTML fix

This commit is contained in:
MathMan05 2024-06-24 10:59:58 -05:00
parent cd9b22d084
commit 73e5856d01
2 changed files with 10 additions and 4 deletions

View file

@ -40,7 +40,7 @@
</tr> </tr>
<tr> <tr>
<td> <td id="channels-td">
<div id="channels"></div> <div id="channels"></div>
<table id="userdock"> <table id="userdock">
<tr> <tr>

View file

@ -239,10 +239,11 @@ p {
} }
#channels { #channels {
--top-height: 28px;
background-color: var(--channels-bg); background-color: var(--channels-bg);
height: 100dvh; position: absolute;
height: -webkit-fill-available; top: var(--top-height);
height: -moz-available; height: calc(100dvh - 53px - var(--top-height));
width: 2.5in; width: 2.5in;
overflow: auto; overflow: auto;
user-select: none; user-select: none;
@ -588,6 +589,11 @@ textarea {
width: 2.5in; width: 2.5in;
position: absolute; position: absolute;
bottom: 0; bottom: 0;
/* position: absolute; */
}
#channels-td {
padding-right: 240px;
} }
#settings { #settings {