- Introduce cache busting (to circumvent aggressive caching on iOS - but ideal in other contexts as well)

- Change the build process to allow cache busting
- Optimisations to the build process
- Several improvements of UI geared towards mobile experience
-
This commit is contained in:
Josako
2025-09-25 17:28:01 +02:00
parent cc47ce2d32
commit 16ce59ae98
32 changed files with 1538 additions and 899 deletions

View File

@@ -434,13 +434,13 @@ export default {
.chat-input-container {
width: 100%;
max-width: 1000px;
padding: 20px;
padding: 10px;
box-sizing: border-box;
background-color: var(--active-background-color);
color: var(--human-message-text-color);
border-top: 1px solid #e0e0e0;
font-family: Arial, sans-serif;
font-size: 14px;
font-size: 16px;
transition: opacity 0.2s ease-in-out;
margin-left: auto;
margin-right: auto;
@@ -470,7 +470,7 @@ export default {
outline: none;
transition: border-color 0.2s;
font-family: Arial, sans-serif;
font-size: 14px;
font-size: 16px;
/* Transparante achtergrond in plaats van wit */
background-color: var(--human-message-background);
color: var(--human-message-text-color);
@@ -534,14 +534,14 @@ export default {
/* Active AI Message Area - positioned at top of ChatInput */
.active-ai-message-area {
margin-bottom: 15px;
padding: 12px;
margin-bottom: 10px;
background-color: var(--ai-message-background);
color: var(--ai-message-text-color);
border-radius: 8px;
font-family: Arial, sans-serif;
font-size: 14px;
font-size: 16px;
box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
padding: 5px;
}
/* Ensure the active AI message integrates well with ChatInput styling */