Skip to content

Commit

Permalink
Add min-height to content
Browse files Browse the repository at this point in the history
  • Loading branch information
RehanSaeed committed Mar 25, 2022
1 parent 6e5653c commit e2ce8a7
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Source/DotnetNewUI/Frontend/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,9 @@ export default defineComponent({
},
});
</script>

<style lang="scss">
.app__router {
min-height: 80vh;
}
</style>
6 changes: 6 additions & 0 deletions Source/DotnetNewUI/Frontend/src/views/CreateItemView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@

<script lang="ts">
import { computed, defineComponent, onMounted, ref } from "vue";
import { useMeta } from "vue-meta";
import { useRoute } from "vue-router";
import Button from "@/components/Button.vue";
import { useCreate, useTemplates } from "@/composables/Templates";
Expand All @@ -56,6 +57,10 @@ export default defineComponent({
const route = useRoute();
const templateId = route.params.id;
useMeta({
title: `Create ${templateId}`,
});
const template = ref<ITemplate | null>(null);
const name = ref("");
const location = ref(
Expand Down Expand Up @@ -131,6 +136,7 @@ export default defineComponent({
<style lang="scss">
.create-item {
display: grid;
align-content: start;
gap: 20px;
justify-content: center;
Expand Down
1 change: 1 addition & 0 deletions Source/DotnetNewUI/Frontend/src/views/CreateView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ export default defineComponent({
<style type="scss">
.create {
display: grid;
align-content: start;
gap: 20px;
padding: 20px;
Expand Down
1 change: 1 addition & 0 deletions Source/DotnetNewUI/Frontend/src/views/InstalledView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ export default defineComponent({
<style type="scss">
.installed {
display: grid;
align-content: start;
gap: 20px;
padding: 20px;
Expand Down
1 change: 1 addition & 0 deletions Source/DotnetNewUI/Frontend/src/views/SearchView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ export default defineComponent({
<style type="scss">
.search {
display: grid;
align-content: start;
gap: 20px;
padding: 20px;
Expand Down

0 comments on commit e2ce8a7

Please sign in to comment.