Minor fixes

This commit is contained in:
2022-05-02 01:48:07 -04:00
parent 8d0c99b4b6
commit f103dc7bed
4 changed files with 11 additions and 2 deletions
@@ -7,6 +7,8 @@
@layout PageLayout @layout PageLayout
<LayoutMediumContentComponent> <LayoutMediumContentComponent>
<WebsiteTitleComponent>Economy Comparision</WebsiteTitleComponent>
<PaperComponent> <PaperComponent>
<div>You</div> <div>You</div>
<EconomyInputComponent ForPlayer="0"/> <EconomyInputComponent ForPlayer="0"/>
+6 -1
View File
@@ -17,6 +17,8 @@
else else
{ {
<LayoutMediumContentComponent> <LayoutMediumContentComponent>
<WebsiteTitleComponent>Notes</WebsiteTitleComponent>
<PaperComponent> <PaperComponent>
@foreach (var noteSection in NoteService.NoteSectionModels) @foreach (var noteSection in NoteService.NoteSectionModels)
@@ -40,7 +42,10 @@ else
<style> <style>
.noteSectionContainer { .noteSectionContainer {
width: 100%; width: 100%;
padding: 8px; padding-left: 8px;
padding-right: 8px;
padding-top: 8px;
padding-bottom: 64px;
} }
.noteSectionTitle { .noteSectionTitle {
+2
View File
@@ -16,6 +16,8 @@
} }
else else
{ {
<LayoutWithSidebarComponent> <LayoutWithSidebarComponent>
<Sidebar> <Sidebar>
<NoteNavComponent <NoteNavComponent
+1 -1
View File
@@ -8,7 +8,7 @@ else
{ {
<div class="note"> <div class="note">
<div class="noteHeader"> <div class="noteHeader">
<div class="noteTitle">@noteFrontMatter.Title</div> <h1 class="noteTitle">@noteFrontMatter.Title</h1>
<div class="noteDates"> <div class="noteDates">
<div class="noteDateUpdated"><b>Updated</b>: @noteFrontMatter.UpdatedDate.ToString("MM/dd/yyyy")</div> <div class="noteDateUpdated"><b>Updated</b>: @noteFrontMatter.UpdatedDate.ToString("MM/dd/yyyy")</div>
<div class="noteDateCreated"><b>Created</b>: @noteFrontMatter.CreatedDate.ToString("MM/dd/yyyy")</div> <div class="noteDateCreated"><b>Created</b>: @noteFrontMatter.CreatedDate.ToString("MM/dd/yyyy")</div>