Skip to content

Commit

Permalink
Increase overall spacing
Browse files Browse the repository at this point in the history
In the future I want to make this configurable with option #24. This current revision can be the default.
  • Loading branch information
danielchalmers committed Aug 17, 2024
1 parent 6c2b86c commit 93e113e
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion JournalApp/Components/EditCategoryDialog.razor
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
}
else if (Group == "Medications")
{
<div class="d-flex flex-row flex-grow-1" style="gap: 0.75em">
<div class="d-flex flex-row flex-grow-1" style="gap: 1em">
<MudNumericField @bind-Value="MedicationDose" HideSpinButtons Label="Dose" MaxLength="6" Immediate />

<MudTextField @bind-Value="MedicationUnit" Label="Unit" MaxLength="8" Immediate />
Expand Down
2 changes: 1 addition & 1 deletion JournalApp/Pages/Calendar/CalendarView.razor.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.calendar-view {
display: flex;
flex-direction: column;
gap: 0.75em;
gap: 1em;
}

.calendar-month-header {
Expand Down
6 changes: 3 additions & 3 deletions JournalApp/Pages/Index.razor.css
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
.main-timeline {
display: flex;
flex-direction: column;
gap: 1.5em;
gap: 0.5em;
}

.data-point-group {
display: flex;
flex-direction: column;
gap: 1em;
}

.data-point-list {
display: flex;
flex-direction: column;
gap: 0.5em;
gap: 1em;
}

.data-point-group-footer {
margin-top: 1em;
}

.data-point-container {
Expand Down
2 changes: 1 addition & 1 deletion JournalApp/Pages/ManageCategoriesPage.razor.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
display: flex;
flex-direction: row;
align-items: center;
gap: 0.1em;
gap: 0.25em;
}

::deep .manage-category-edit-button {
Expand Down
2 changes: 1 addition & 1 deletion JournalApp/Pages/SafetyPlanning/SafetyPlanPage.razor.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.safety-plan-items-container {
display: flex;
flex-direction: column;
gap: 0.75em;
gap: 1em;
}

::deep safety-plan-item {
Expand Down
4 changes: 2 additions & 2 deletions JournalApp/Pages/SettingsPage.razor.css
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
.settings-group-list {
display: flex;
flex-direction: column;
gap: 1.5em;
gap: 2em;
}

.settings-group {
display: flex;
flex-direction: column;
gap: 0.25em;
gap: 0.5em;
align-items: start;
}
2 changes: 1 addition & 1 deletion JournalApp/Pages/Trends/TrendsPage.razor.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#trends-category-list {
display: flex;
flex-direction: column;
/* gap: 0.75em; */
gap: 0.5em;
}

.trends-category {
Expand Down
5 changes: 3 additions & 2 deletions JournalApp/Pages/Worksheets/WorksheetsPage.razor.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.worksheet-group-list {
display: flex;
flex-direction: column;
gap: 1.5em;
gap: 2em;
}

.worksheet-group {
Expand All @@ -12,7 +12,7 @@
.worksheet-group-items {
display: flex;
flex-direction: column;
gap: 0.5em;
gap: 1em;
}

.worksheet-group-toc {
Expand All @@ -31,4 +31,5 @@
display: flex;
flex-direction: column;
align-items: start;
gap: 0.25em;
}
2 changes: 1 addition & 1 deletion JournalApp/wwwroot/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ h1, h2, h3, h4, h5, h6 {
.mud-form {
display: flex;
flex-direction: column;
gap: 0.75em;
gap: 1em;
}

.mud-input-text {
Expand Down

0 comments on commit 93e113e

Please sign in to comment.