Fix bestellungen card spacing

This commit is contained in:
2026-06-15 13:04:28 +02:00
parent 2b990c4b0e
commit fdc50ff61b
2 changed files with 6 additions and 1 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ function render_auth_home_page(array $user): void
echo '<meta name="viewport" content="width=device-width, initial-scale=1.0">'; echo '<meta name="viewport" content="width=device-width, initial-scale=1.0">';
echo '<title>Naurua ERP</title>'; echo '<title>Naurua ERP</title>';
echo '<link rel="stylesheet" href="/assets/styles.css">'; echo '<link rel="stylesheet" href="/assets/styles.css">';
echo '<link rel="stylesheet" href="/assets/styles.portal.css">'; echo '<link rel="stylesheet" href="/assets/styles.portal.css?v=' . filemtime(__DIR__ . '/../../../../public/assets/styles.portal.css') . '">';
echo '</head>'; echo '</head>';
echo '<body>'; echo '<body>';
echo '<section id="pattern-portal-header" class="sg-vsf-list-overview-page-v2">'; echo '<section id="pattern-portal-header" class="sg-vsf-list-overview-page-v2">';
+5
View File
@@ -22,3 +22,8 @@
.sg-left-navigation-pattern__group-card--content > [data-left-navigation-content-body] > .sg-card { .sg-left-navigation-pattern__group-card--content > [data-left-navigation-content-body] > .sg-card {
width: 100%; width: 100%;
} }
.sg-left-navigation-pattern__group-card--content {
flex-direction: column;
align-items: stretch;
}