Files
SqlDatabaseVectorSearch/SqlDatabaseVectorSearch/Components/Layout/MainLayout.razor.css
T
Marco Minerva eba0d4c272 Add footer to layout and enhance document handling
- Updated `MainLayout.razor` to include a footer displaying the framework description, styled with new CSS.
- Modified `MainLayout.razor.css` to add styles for the footer.
- Enhanced `Ask.razor` with a new `ToastService` for user notifications and improved message handling.
- Updated `Documents.razor` to restrict file uploads to specific formats and improved error handling with notifications for uploads and deletions.
2025-02-20 11:56:48 +01:00

37 lines
756 B
CSS

.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #f8f9fa;
border-top: 1px solid #dee2e6;
}
.footer-content span {
font-size: 0.9rem;
color: #6c757d;
}
.footer-content .ms-auto {
margin-left: auto;
}
#blazor-error-ui {
color-scheme: light only;
background: lightyellow;
bottom: 0;
box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
box-sizing: border-box;
display: none;
left: 0;
padding: 0.6rem 1.25rem 0.7rem 1.25rem;
position: fixed;
width: 100%;
z-index: 1000;
}
#blazor-error-ui .dismiss {
cursor: pointer;
position: absolute;
right: 0.75rem;
top: 0.5rem;
}