summaryrefslogtreecommitdiff
path: root/src/components/Global/TableToolbar.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Global/TableToolbar.vue')
-rw-r--r--src/components/Global/TableToolbar.vue11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/components/Global/TableToolbar.vue b/src/components/Global/TableToolbar.vue
index 3ac8e2ce..eabe0c98 100644
--- a/src/components/Global/TableToolbar.vue
+++ b/src/components/Global/TableToolbar.vue
@@ -67,12 +67,13 @@ export default {
},
};
</script>
-
<style lang="scss" scoped>
$toolbar-height: 64px;
.toolbar-container {
- width: 100%;
+ width: calc(100vw - 320px);
+ height: $toolbar-height;
+ border-radius: 0px;
position: fixed;
bottom: 0;
right: 0;
@@ -80,18 +81,14 @@ $toolbar-height: 64px;
}
.toolbar-content {
- height: $toolbar-height;
background-color: $white;
color: $white;
- position: absolute;
- left: 0;
- right: 0;
- top: -$toolbar-height;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
box-shadow: 0px -4px 12px rgba(0, 0, 0, 0.06);
+ border-radius: 0px;
}
.toolbar-selected {