This commit is contained in:
Saifeddine ALOUI 2025-02-04 00:07:56 +01:00
parent 2c4ab3a64f
commit 52f9e2d040
5 changed files with 11 additions and 8 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

4
web/dist/index.html vendored
View File

@ -6,8 +6,8 @@
<script src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LoLLMS WebUI</title>
<script type="module" crossorigin src="/assets/index-wZAUG4E5.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-Dq4y7aHu.css">
<script type="module" crossorigin src="/assets/index-Bxwk2otq.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-B0I7ZOtY.css">
</head>
<body>
<div id="app"></div>

View File

@ -1,9 +1,11 @@
<template>
<!-- Chatbar Container: Fixed, centered, and compact with a modern look -->
<div
class="fixed bottom-8 left-1/2 transform -translate-x-1/2 w-full max-w-2xl p-6 bg-white/95 dark:bg-gray-900/95 backdrop-blur-sm rounded-xl border border-gray-200 dark:border-gray-700 shadow-2xl transition-all duration-300 ease-in-out"
class="fixed bottom-8 left-1/2 transform -translate-x-1/2 w-full max-w-2xl p-6 bg-white/95 dark:bg-gray-900/95 backdrop-blur-sm rounded-xl border border-gray-200 dark:border-gray-700 shadow-2xl transition-all duration-300 ease-in-out z-50"
>
<!-- Files Panel (if any files are attached) -->
<div v-if="filesList.length > 0" class="mb-3">
<div class="flex items-center justify-between mb-2">

View File

@ -818,7 +818,8 @@
class="absolute w-full bottom-0 bg-transparent p-10 pt-16 bg-gradient-to-t from-bg-light dark:from-bg-dark from-5% via-bg-light dark:via-bg-dark via-10% to-transparent to-100%">
</div>
</div>
<div class="flex flex-row items-center justify-center h-10" v-if="currentDiscussion.id">
<div class="w-full flex flex-row items-center justify-center h-10 mx-auto" v-if="currentDiscussion.id">
<ChatBox ref="chatBox"
:loading="isGenerating"
:discussionList="discussionArr"