From eb7a0007330b9d7d41053334a06b04f722c05442 Mon Sep 17 00:00:00 2001 From: Nick Seguin Date: Tue, 27 Feb 2024 17:55:03 -0600 Subject: [PATCH] remove leftover bootstrap css config --- .../Components/Layout/SimpleLayout.razor | 2 +- .../Components/Layout/SimpleLayout.razor.css | 72 ------------------- 2 files changed, 1 insertion(+), 73 deletions(-) diff --git a/src/NSeguin.Dev.Web/Components/Layout/SimpleLayout.razor b/src/NSeguin.Dev.Web/Components/Layout/SimpleLayout.razor index 16f6f2f..4f6ca74 100644 --- a/src/NSeguin.Dev.Web/Components/Layout/SimpleLayout.razor +++ b/src/NSeguin.Dev.Web/Components/Layout/SimpleLayout.razor @@ -14,7 +14,7 @@
-
+
@Body
diff --git a/src/NSeguin.Dev.Web/Components/Layout/SimpleLayout.razor.css b/src/NSeguin.Dev.Web/Components/Layout/SimpleLayout.razor.css index d5914c2..9f13e57 100644 --- a/src/NSeguin.Dev.Web/Components/Layout/SimpleLayout.razor.css +++ b/src/NSeguin.Dev.Web/Components/Layout/SimpleLayout.razor.css @@ -1,75 +1,3 @@ - -main { - flex: 1; - position: relative; - display: flex; - flex-direction: column; -} - -.top-row { - background-color: #f7f7f7; - border-bottom: 1px solid #d6d5d5; - justify-content: flex-end; - height: 3.5rem; - display: flex; - align-items: center; -} - -.top-row ::deep a, .top-row ::deep .btn-link { - white-space: nowrap; - margin-left: 1.5rem; - text-decoration: none; -} - -.top-row ::deep a:hover, .top-row ::deep .btn-link:hover { - text-decoration: underline; -} - -.top-row ::deep a:first-child { - overflow: hidden; - text-overflow: ellipsis; -} - -@media (max-width: 640.98px) { - .top-row { - justify-content: space-between; - } - - .top-row ::deep a, .top-row ::deep .btn-link { - margin-left: 0; - } -} - -@media (min-width: 641px) { - .page { - flex-direction: row; - } - - .sidebar { - width: 250px; - height: 100vh; - position: sticky; - top: 0; - } - - .top-row { - position: sticky; - top: 0; - z-index: 1; - } - - .top-row.auth ::deep a:first-child { - flex: 1; - text-align: right; - width: 0; - } - - .top-row, article { - padding-left: 2rem !important; - padding-right: 1.5rem !important; - } -} - #blazor-error-ui { background: lightyellow; bottom: 0;