Skip to content

Commit

Permalink
feat: UI quality of life changes
Browse files Browse the repository at this point in the history
1. Disable auto complete suggestions for the chat bot text input
2. Defined unordered list styles so that they don't get overridden by general normalise styles of the page into which this could get loaded
  • Loading branch information
su-docker committed Apr 5, 2024
1 parent ee3b60d commit 49174cf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
name="message"
placeholder="Write a message..."
class="chat-input"
autocomplete="off"
/>
<button class="send-btn">
<svg
Expand Down
5 changes: 5 additions & 0 deletions src/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
max-height: 700px;
z-index: 1000;

ul {
list-style-type: disc;
padding-inline-start: 1em;
}

.t-container {
font-family: Inter;
width: 400px;
Expand Down

0 comments on commit 49174cf

Please sign in to comment.