Remove footer and update card layout styles

- Removed the `FooterSection` from `MainLayout.razor` and its associated styles in `MainLayout.razor.css`.
- Added top margin to the card in `Ask.razor` for improved spacing.
- Increased height of `.card-body` in both default and media queries for better content display.
- Added CSS rules in `app.css` to reset margin and padding for `body` and `html`.
- Modified binary file `SqlDatabaseVectorSearch_WebApp.png`.
This commit is contained in:
Marco Minerva
2025-02-25 15:52:58 +01:00
parent 9071e130de
commit e1324115f8
6 changed files with 11 additions and 28 deletions
@@ -23,15 +23,9 @@
</SidebarSection>
<ContentSection>
@Body
@Body
</ContentSection>
<FooterSection>
<div class="footer-content">
<span class="ms-auto">@RuntimeInformation.FrameworkDescription</span>
</div>
</FooterSection>
</BlazorBootstrapLayout>
@code {
@@ -1,20 +1,3 @@
.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;
@@ -5,7 +5,7 @@
<PageTitle>Chat with your data</PageTitle>
<div class="card mx-auto">
<div class="card mx-auto mt-2">
<div class="card-body">
@foreach (var message in messages)
@@ -23,18 +23,18 @@ input[type="checkbox"] + label {
.card-body {
overflow: auto;
height: 490px;
height: 560px;
}
@media (min-width: 768px) {
.card-body {
height: 595px;
height: 665px;
}
}
@media (min-width: 2560px) {
.card-body {
height: 950px;
height: 1020px;
}
}
@@ -1,3 +1,9 @@
body, html {
margin: 0;
padding: 0;
height: 100%;
}
:root {
--bb-sidebar2-width: 270px;
--bb-sidebar2-collapsed-width: 50px;