diff options
author | HampusM <hampus@hampusmat.com> | 2021-06-11 13:31:07 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2021-06-11 13:31:07 +0200 |
commit | 7e9433762f51be2c4938481c9c33589982118033 (patch) | |
tree | 9cfc36a1d59ac3c926bfcb2e222449da14cfec5d /packages/client/src/views/Repository.vue | |
parent | 55ab996795efdb125437d5728b50d03ac5d2612d (diff) |
Goodbye, Bootstrap & added a button component
Diffstat (limited to 'packages/client/src/views/Repository.vue')
-rw-r--r-- | packages/client/src/views/Repository.vue | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/packages/client/src/views/Repository.vue b/packages/client/src/views/Repository.vue index bbadb16..24000d4 100644 --- a/packages/client/src/views/Repository.vue +++ b/packages/client/src/views/Repository.vue @@ -1,5 +1,5 @@ <template> - <div class="container-fluid px-0 d-flex"> + <div class="container"> <RepositoryHeader :name="name" :description="description" /> <RepositoryNavbar :repository="$router.currentRoute._rawValue.params.repo" :active-page="$router.currentRoute._rawValue.path.split('/')[2]" @@ -39,10 +39,3 @@ export default { } }; </script> - -<style lang="scss" scoped> -.container-fluid { - flex-flow: column; - height: 100vh; -} -</style> |