diff --git a/src/assets/css/components/views/detections/detection-overview.scss b/src/assets/css/components/views/detections/detection-overview.scss index 0bec52fb..ea530880 100644 --- a/src/assets/css/components/views/detections/detection-overview.scss +++ b/src/assets/css/components/views/detections/detection-overview.scss @@ -176,11 +176,6 @@ $color-regular: var(--el-text-color-regular); .overview__left-new { flex: 0 0 100%; } - - .detection-detail__loading { - width: 100%; - padding-bottom: 60px; - } } .overview__row-timeline { display: flex; @@ -329,3 +324,15 @@ $color-regular: var(--el-text-color-regular); color: var(--el-text-color-primary); font-weight: 400; } + +.detection-detail__loading { + width: 100%; + height: 200px; + position: relative; + + .detail__loading { + position: absolute; + top: -100px; + width: 100%; + } +} diff --git a/src/views/detections/overview/IndicatorMatchOverview.vue b/src/views/detections/overview/IndicatorMatchOverview.vue index 7fa527eb..681e5ded 100644 --- a/src/views/detections/overview/IndicatorMatchOverview.vue +++ b/src/views/detections/overview/IndicatorMatchOverview.vue @@ -1,5 +1,8 @@