Fix
This commit is contained in:
parent
b3595d25f4
commit
411d5fd084
15
src/app.scss
15
src/app.scss
|
@ -139,13 +139,15 @@ select option.is-default {
|
||||||
|
|
||||||
.user-message {
|
.user-message {
|
||||||
max-width: 90%;
|
max-width: 90%;
|
||||||
margin-right: 0;
|
margin-right: auto;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
width: fit-content;
|
width: fit-content;
|
||||||
}
|
}
|
||||||
|
|
||||||
.assistant-message {
|
.assistant-message {
|
||||||
max-width: 90%;
|
max-width: 90%;
|
||||||
|
margin-right: auto;
|
||||||
|
margin-left: auto;
|
||||||
width: fit-content;
|
width: fit-content;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -160,6 +162,13 @@ select option.is-default {
|
||||||
text-decoration: none !important;
|
text-decoration: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: "Source Sans 3", "Fira Sans", sans-serif !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code-block {
|
||||||
|
font-family: "Monaco", "Hack", monospace !important;
|
||||||
|
}
|
||||||
/* Style the chat input */
|
/* Style the chat input */
|
||||||
.chat-input {
|
.chat-input {
|
||||||
overflow-y: hidden;
|
overflow-y: hidden;
|
||||||
|
@ -415,7 +424,7 @@ aside.menu.main-menu .menu-expanse {
|
||||||
}
|
}
|
||||||
|
|
||||||
.default-text {
|
.default-text {
|
||||||
color: hsl(0, 0%, 21%) !important;
|
color: hsl(0, 0%, 10%) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.lower-mask, .lower-mask2 {
|
.lower-mask, .lower-mask2 {
|
||||||
|
@ -439,7 +448,7 @@ aside.menu.main-menu .menu-expanse {
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
@media (prefers-color-scheme: dark) {
|
||||||
.default-text {
|
.default-text {
|
||||||
color: rgb(181, 181, 181) !important;
|
color: rgb(255, 240, 255) !important;
|
||||||
}
|
}
|
||||||
.lower-mask, .lower-mask2 {
|
.lower-mask, .lower-mask2 {
|
||||||
background-image: linear-gradient(180deg,hsla(0,0%,100%,0) 13.94%, var(--BgColorDark) 54.73%);
|
background-image: linear-gradient(180deg,hsla(0,0%,100%,0) 13.94%, var(--BgColorDark) 54.73%);
|
||||||
|
|
|
@ -14,14 +14,4 @@ export { classes as class }
|
||||||
<div class="lower-mask2" class:strong-mask={strongMask} />
|
<div class="lower-mask2" class:strong-mask={strongMask} />
|
||||||
<div class="section-footer {classes}" class:pin-footer={pin}>
|
<div class="section-footer {classes}" class:pin-footer={pin}>
|
||||||
<slot />
|
<slot />
|
||||||
<div class="content has-text-centered credit-footer">
|
|
||||||
<p>
|
|
||||||
<strong>ChatGPT-web</strong>
|
|
||||||
<span class="author">by
|
|
||||||
<a target="_blank" href="https://niekvandermaas.nl/">Niek van der Maas</a>
|
|
||||||
</span>
|
|
||||||
<a target="_blank" class="ml-4" href="https://github.com/Niek/chatgpt-web"><span style="position:absolute" class="icon default-text"><Fa size="2x" icon="{faGithub}"/></span></a>
|
|
||||||
<span style="display:inline-block;width:30px;height:20px;"></span>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue