This commit is contained in:
Mattias Wiberg 2025-06-02 21:48:40 +02:00
commit 5aa9b32c03
27 changed files with 4142 additions and 0 deletions

28
styles/style.scss Normal file
View file

@ -0,0 +1,28 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
html,
body,
#__next,
.main {
max-height: 100vh;
height: 100vh;
margin: 0;
padding: 0;
overflow: hidden;
}
.channel-list {
li a:before {
content: '# ';
opacity: 0.5;
}
li a:hover {
opacity: 0.9;
}
}
.Messages {
overflow: auto;
display: flex;
flex-direction: column-reverse;
}