summaryrefslogtreecommitdiff
path: root/src/components/_sila/Global/PopoverInfo.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/_sila/Global/PopoverInfo.vue')
-rw-r--r--src/components/_sila/Global/PopoverInfo.vue40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/components/_sila/Global/PopoverInfo.vue b/src/components/_sila/Global/PopoverInfo.vue
deleted file mode 100644
index 4b1b0b0d..00000000
--- a/src/components/_sila/Global/PopoverInfo.vue
+++ /dev/null
@@ -1,40 +0,0 @@
-<template>
- <b-popover :target="id" triggers="hover" placement="top">
- <span class="regular-12px">{{ description }}</span>
- </b-popover>
-</template>
-
-<script>
-export default {
- props: {
- description: {
- type: String,
- default: '',
- },
- id: {
- type: String,
- default: '',
- },
- },
-};
-</script>
-<style lang="scss" scoped>
-.popover::v-deep {
- background-color: #040a0f;
- width: 168px;
- height: 76px;
-}
-
-.popover::v-deep .arrow {
- visibility: visible;
-}
-
-.popover::v-deep .arrow::after {
- border-top-color: #040a0f;
- border-bottom-color: #040a0f;
-}
-
-.regular-12px {
- color: $white;
-}
-</style>