diff --git a/src/assets/scss/common.scss b/src/assets/scss/common.scss index 2118e22..30b37ff 100644 --- a/src/assets/scss/common.scss +++ b/src/assets/scss/common.scss @@ -65,6 +65,13 @@ $mobile-header-height : 100px; font-size: $font-size; } +@mixin root-container { + background: $back-color; + width: 100%; + min-height: 100%; + height: 100%; + overflow: auto; +} diff --git a/src/components/common/Loading.vue b/src/components/common/Loading.vue new file mode 100644 index 0000000..c08b1f0 --- /dev/null +++ b/src/components/common/Loading.vue @@ -0,0 +1,28 @@ + + + + + \ No newline at end of file diff --git a/src/components/common/TheNavBar.vue b/src/components/common/TheNavBar.vue index c09af11..7dbeefa 100644 --- a/src/components/common/TheNavBar.vue +++ b/src/components/common/TheNavBar.vue @@ -33,11 +33,11 @@ export default { .nav-bar { @include flex-box(row, space-between, 0px); background-color: $theme-color; - position: fixed; + position: absolute; top: 0px; left: 0px; height: $nav-bar-height; - width: 100vw; + width: 100%; padding: 0px 20px; z-index: 2; .nav-info { diff --git a/src/components/common/TheSideBar.vue b/src/components/common/TheSideBar.vue index 5484bcf..828fd82 100644 --- a/src/components/common/TheSideBar.vue +++ b/src/components/common/TheSideBar.vue @@ -40,11 +40,11 @@ export default { \ No newline at end of file diff --git a/src/views/contract/ContractBulkCreateView.vue b/src/views/contract/ContractBulkCreateView.vue index 133c3dc..c3baa8b 100644 --- a/src/views/contract/ContractBulkCreateView.vue +++ b/src/views/contract/ContractBulkCreateView.vue @@ -72,11 +72,10 @@ export default { \ No newline at end of file diff --git a/src/views/error/NotFoundView.vue b/src/views/error/NotFoundView.vue new file mode 100644 index 0000000..de241ee --- /dev/null +++ b/src/views/error/NotFoundView.vue @@ -0,0 +1,42 @@ + + + + + \ No newline at end of file diff --git a/src/views/home/HomeView.vue b/src/views/home/HomeView.vue index 381f7b1..0164948 100644 --- a/src/views/home/HomeView.vue +++ b/src/views/home/HomeView.vue @@ -79,9 +79,8 @@ export default {