chore: Änderungen commited

This commit is contained in:
2025-05-02 19:13:14 +02:00
parent a5396c0d6e
commit 304a399b85
3 changed files with 46 additions and 13 deletions

View File

@@ -1,7 +1,7 @@
/* ChatGPT Assistent Styles - Verbesserte Version */
#chatgpt-assistant {
font-family: 'Inter', sans-serif;
bottom: 4.5rem;
bottom: 5.5rem;
}
#assistant-chat {
@@ -11,7 +11,7 @@
border-radius: 0.75rem;
overflow: hidden;
max-width: calc(100vw - 2rem);
max-height: 80vh !important;
max-height: 75vh !important;
}
#assistant-toggle {
@@ -182,12 +182,12 @@ body:not(.dark) .typing-indicator span {
@media (max-width: 640px) {
#assistant-chat {
width: calc(100vw - 2rem) !important;
max-height: 70vh !important;
max-height: 65vh !important;
}
#chatgpt-assistant {
right: 1rem;
bottom: 5rem;
bottom: 6rem;
}
}
@@ -233,4 +233,15 @@ body.dark .assistant-message {
background-color: rgba(31, 41, 55, 0.5) !important;
color: #F9FAFB !important;
border-left: 3px solid #8B5CF6;
}
/* Chat-Assistent-Position im Footer-Bereich anpassen */
.chat-assistant {
max-height: 75vh;
bottom: 1.5rem;
}
.chat-assistant .chat-messages {
max-height: calc(75vh - 180px);
overflow-y: auto;
}