Engg-SS_ChatBOT / CSS /chat_style.css
abhivsh's picture
Upload 2 files
c56a38c verified
raw
history blame contribute delete
598 Bytes
.gradio-container {
display: flex;
flex-direction: column;
height: 100%; /* Occupy full height of the container */
}
.chat-box {
flex-grow: 1; /* Allow the chat box to expand and fill available space */
overflow-y: auto; /* Add vertical scroll if content overflows */
}
/* Media Queries for Different Screen Sizes */
@media (max-width: 768px) {
/* Styles for tablets and smaller screens */
.chat-container {
flex-direction: column; /* Stack chat boxes vertically */
}
}
@media (max-width: 480px) {
/* Styles for mobile phones */
/* Add more specific styles as needed */
}