Skip to content
This repository has been archived by the owner on May 31, 2023. It is now read-only.

Commit

Permalink
Minor style improvements and fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ChaoticByte committed May 18, 2023
1 parent 3ef9099 commit 19b6162
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
1 change: 1 addition & 0 deletions frontend/static/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,5 +183,6 @@
});

textInputElement.addEventListener("input", resizeInputElement);
resizeInputElement();

})();
14 changes: 6 additions & 8 deletions frontend/static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
--icon-button-fill: #ffffff;
--send-icon-button-fill: #29c76d;
--color: #fafafa;
--padding: .5rem;
--border-radius: .5rem;
}

Expand All @@ -21,16 +20,15 @@ body {
color: var(--color);
font-family: sans-serif;
flex-direction: row;
min-height: 100vh;
height: 100vh;
}


input[type="number"] {
width: 4rem;
}

.sidepanel {
gap: var(--padding);
gap: .5rem;
align-items: flex-end;
padding: 1rem;
padding-left: 0;
Expand Down Expand Up @@ -59,16 +57,16 @@ input[type="number"] {

.messages {
gap: 1.1rem;
padding-bottom: var(--padding);
margin-bottom: 1rem;
overflow-y: scroll;
max-height: 89vh;
}

.message {
display: flex;
flex-direction: row;
gap: var(--padding);
padding: var(--padding);
gap: .5rem;
padding: .5rem;
border-radius: var(--border-radius);
max-width: fit-content;
}
Expand Down Expand Up @@ -149,7 +147,7 @@ button:hover {
}

.icon-button > svg {
height: 1.8rem;
height: 1.5rem;
width: auto;
fill: var(--icon-button-fill);
}
Expand Down

0 comments on commit 19b6162

Please sign in to comment.