fix(chat): Ukrycie footera i blokada scroll body
- Dodano overflow: hidden na html i body - Ukrycie footer na stronie chatu (display: none) - max-height na main dla pewności - height: 100% na container Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
7d7755ed0a
commit
95ac4c79e4
@ -7,12 +7,23 @@
|
||||
{% block extra_css %}
|
||||
<style>
|
||||
/* Reset dla pełnoekranowego chatu jak ChatGPT/Claude */
|
||||
html, body {
|
||||
overflow: hidden !important; /* Blokada scrollowania strony */
|
||||
height: 100% !important;
|
||||
}
|
||||
|
||||
/* Ukrycie footera na stronie chatu */
|
||||
footer {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
main {
|
||||
padding: 0 !important;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: calc(100vh - 73px); /* Wysokość minus navbar */
|
||||
overflow: hidden;
|
||||
height: calc(100vh - 73px) !important; /* Wysokość minus navbar */
|
||||
max-height: calc(100vh - 73px) !important;
|
||||
overflow: hidden !important;
|
||||
}
|
||||
|
||||
main > .container.chat-container-override {
|
||||
@ -23,6 +34,7 @@
|
||||
flex: 1;
|
||||
display: flex;
|
||||
overflow: hidden;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.chat-layout {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user