Skip to content

Commit

Permalink
fix: remove vertical scroll (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreiio authored Nov 1, 2022
1 parent 9c054dd commit 6511aa3
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
2 changes: 1 addition & 1 deletion client/src/App.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div>
<div class="pt-6">
<banner />
<router-view />
</div>
Expand Down
17 changes: 16 additions & 1 deletion client/src/components/Banner.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div style="background: white; font-size: 12px; padding: 6px 0; color: black">
<div class="banner">
<div class="container is-fluid">
<div>
<Logo
Expand Down Expand Up @@ -42,3 +42,18 @@ export default {
}
}
</script>

<style scoped>
.banner {
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
background-color: #FFF;
font-size: 12px;
padding: 6px 0;
color: #000;
z-index: 40;
position: fixed;
right: 0;
left: 0;
top: 0;
}
</style>
2 changes: 0 additions & 2 deletions client/src/views/TableView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,6 @@
@update="getTableEntries"
updateQueryNav
customPerPage
fixedHeader
fullHeight
/>
</template>
</BaseCard>
Expand Down

0 comments on commit 6511aa3

Please sign in to comment.