mgzon-app / static /css /footer.css
ibrahimlasfar's picture
Fix footer position, prompts size, flexible textarea, send button, prompts refresh, and add voice recording
aed5ad1
raw
history blame contribute delete
613 Bytes
/*
* SPDX-FileCopyrightText: Hadad <hadad@linuxmail.org>
* SPDX-License-Identifier: Apache-2.0
*/
#footerForm {
display: flex;
gap: 0.75rem;
background: transparent;
align-items: center;
width: 100%;
max-width: 800px;
margin: 0 auto;
padding: 0.5rem 1rem;
box-sizing: border-box;
position: sticky;
bottom: 0;
z-index: 1000;
animation: fadeIn 0.3s ease-out forwards;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
#footerForm {
max-width: 100%;
padding: 0.5rem;
}
}