Skip to content

Commit 7891026

Browse files
committed
Updating border colors for input message box and selected conversation to match site theme.
1 parent 13bd909 commit 7891026

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
# [**MinimalChat: A Simple and Customizable LLM Chat App**](https://minimalgpt.app)
22

33
![Build Status](https://img.shields.io/badge/build-passing-brightgreen)
4-
![Version](https://img.shields.io/badge/version-5.1.2-blue)
4+
![Version](https://img.shields.io/badge/version-5.1.3-blue)
55
![License](https://img.shields.io/badge/license-MIT-green)
6+
![Website](https://img.shields.io/website?url=https%3A%2F%2Fminimalgpt.app)
7+
![GitHub repo size](https://img.shields.io/github/repo-size/fingerthief/minimal-chat)
8+
![Docker Image Size](https://img.shields.io/docker/image-size/tannermiddleton/minimal-chat)
9+
![GitHub top language](https://img.shields.io/github/languages/top/fingerthief/minimal-chat)
10+
![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/fingerthief/minimal-chat/firebase-hosting-merge.yml)
11+
![GitHub Repo stars](https://img.shields.io/github/stars/fingerthief/minimal-chat)
612

713
## Self Host with Docker
814

src/components/chat-input.vue

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,11 +165,10 @@ $icon-color: rgb(187, 187, 187);
165165
}
166166
}
167167
168-
169168
#user-input {
170169
flex-grow: 1;
171170
z-index: 9999;
172-
border: 1px solid #262628;
171+
border: 1px solid #0d3937;
173172
outline: none;
174173
background-color: #1e1e20;
175174
font-size: 18px;
@@ -182,7 +181,6 @@ $icon-color: rgb(187, 187, 187);
182181
box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.3);
183182
}
184183
185-
186184
@font-face {
187185
font-family: Roboto-Regular;
188186
src: url('/src/assets/webfonts/Roboto-Regular.ttf');

src/components/conversations-dialog.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -354,6 +354,7 @@ $icon-color: rgb(187, 187, 187);
354354
font-weight: bold;
355355
box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.1);
356356
animation: pulse 0.250s ease-out forwards;
357+
border: 1px solid #513f77;
357358
}
358359
359360
&.selected:before {

src/components/settings-dialog.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ function toggleSidebar() {
6969
<span @click="reloadPage">
7070
<RefreshCcw :size="23" :stroke-width="2" />
7171
</span>
72-
Settings | V5.1.2
72+
Settings | V5.1.3
7373
</h2>
7474
</div>
7575
<div class="sidebar-content-container">

0 commit comments

Comments
 (0)