+ text/plain Message sending works now

+ More skeleton code for the caching system

! Ready for rtc on text based message listening which is where heavy caching comes into play
This commit is contained in:
shockrah
2021-03-20 19:35:38 -07:00
parent 530d287431
commit 8812ff7198
9 changed files with 96 additions and 22 deletions

View File

@@ -1,6 +1,6 @@
@import 'general';
::-webkit-scrollbar {
::-webkit-scrollbar-corner, ::-webkit-scrollbar {
background-color: $back-grey;
width: .8em
}
@@ -12,6 +12,8 @@
}
.scrollarea {
max-height: 100vh;
max-height: inherit;
max-width: inherit;
overflow: scroll;
word-break: break-all;
}

View File

@@ -92,6 +92,7 @@ ul ul a {
display: block;
text-decoration: none;
color: $text;
margin: 0;
}
.message a:hover {
@@ -114,4 +115,6 @@ ul ul a {
max-height: 1005px; // 1080 - $send-container-height
}
#content-container {
max-height: calc(100% - 100px);
}