Commit c3808ef5 authored by Filipa Lacerda's avatar Filipa Lacerda

Merge branch 'remove-extra-spinner-styling' into 'master'

Remove extra styles on loading-container

See merge request gitlab-org/gitlab!17997
parents 51b45ac6 91d18d34
......@@ -98,7 +98,7 @@ export default {
</script>
<template>
<div class="js-deploy-board deploy-board">
<gl-loading-icon v-if="isLoading" />
<gl-loading-icon v-if="isLoading" class="loading-icon" />
<template v-else>
<div v-if="hasLegacyAppLabel" class="bs-callout bs-callout-warning mb-0 mt-0">
<span v-html="legacyLabelWarningMessage"></span>
......
......@@ -96,7 +96,11 @@ export default {
>
<icon :name="chevronType" />
</gl-button>
<gl-loading-icon v-if="childrenFlags[itemReference].itemChildrenFetchInProgress" size="sm" />
<gl-loading-icon
v-if="childrenFlags[itemReference].itemChildrenFetchInProgress"
class="loading-icon"
size="sm"
/>
<tree-item-body
class="tree-item-row"
:parent-item="parentItem"
......
......@@ -48,7 +48,7 @@
margin-left: $gl-sidebar-padding;
}
.loading-container {
.loading-icon {
margin-left: $gl-padding-4 / 2;
margin-right: $gl-padding-4;
}
......
......@@ -5,7 +5,7 @@
background-color: $gray-light;
min-height: 20px;
> .loading-container,
> .loading-icon,
> .deploy-board-empty,
> .deploy-board-information {
padding: 10px;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment