diff --git a/SessionZero/Layout/MainLayout.razor.css b/SessionZero/Layout/MainLayout.razor.css index 7f01590..953db1b 100644 --- a/SessionZero/Layout/MainLayout.razor.css +++ b/SessionZero/Layout/MainLayout.razor.css @@ -10,7 +10,7 @@ display: flex; flex: 1; padding: 1.5rem; - align-items: center; + align-items: stretch; text-align: center; flex-direction: column; } diff --git a/SessionZero/Layout/NavBar.razor.css b/SessionZero/Layout/NavBar.razor.css index 82adf37..ca4c455 100644 --- a/SessionZero/Layout/NavBar.razor.css +++ b/SessionZero/Layout/NavBar.razor.css @@ -25,7 +25,6 @@ text-decoration: none; color: var(--text-color); margin: 0.2rem 0; - width: 100%; } #navbar ::deep .nav-icon { diff --git a/SessionZero/Pages/Library/Datasets/DatasetEditor.razor b/SessionZero/Pages/Library/Datasets/DatasetEditor.razor new file mode 100644 index 0000000..e28d1c1 --- /dev/null +++ b/SessionZero/Pages/Library/Datasets/DatasetEditor.razor @@ -0,0 +1,327 @@ +
+
+

Dataset Editor

+
+ +

Info

+
+ + + + + + + + + + + +
+ +
+ +

Sections

+ + @* A single section for demonstration *@ +
+
+ + +
+ +

Entries

+
+
+ + +
+ +
+ + + + + + +
+ + @* New Fields would be added here *@ + +
+ + @* New Entries would be added here *@ + +
+ + @* New Sections would be added here *@ + +
+
+ + \ No newline at end of file diff --git a/SessionZero/Pages/Library/Datasets/DatasetEditor.razor.cs b/SessionZero/Pages/Library/Datasets/DatasetEditor.razor.cs new file mode 100644 index 0000000..0e6b913 --- /dev/null +++ b/SessionZero/Pages/Library/Datasets/DatasetEditor.razor.cs @@ -0,0 +1,7 @@ +using Microsoft.AspNetCore.Components; + +namespace SessionZero.Pages.Library.Datasets; + +public partial class DatasetEditor : ComponentBase +{ +} \ No newline at end of file diff --git a/SessionZero/Pages/Library/Datasets/DatasetEditor.razor.css b/SessionZero/Pages/Library/Datasets/DatasetEditor.razor.css new file mode 100644 index 0000000..e69de29 diff --git a/SessionZero/Pages/Library/Datasets/Datasets.razor b/SessionZero/Pages/Library/Datasets/Datasets.razor index e7ff669..6571ee6 100644 --- a/SessionZero/Pages/Library/Datasets/Datasets.razor +++ b/SessionZero/Pages/Library/Datasets/Datasets.razor @@ -32,4 +32,6 @@

SessionZeroDB

Search online for new datasets (NOT FUNCTIONAL)

- \ No newline at end of file + + + \ No newline at end of file diff --git a/SessionZero/wwwroot/css/app.css b/SessionZero/wwwroot/css/app.css index e31431c..71ea4c6 100644 --- a/SessionZero/wwwroot/css/app.css +++ b/SessionZero/wwwroot/css/app.css @@ -374,6 +374,7 @@ select.form-control { border-radius: 8px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); margin-bottom: 1.5rem; + flex: 1; } .panel-header {