fix: Bulk actions agent loading (#4874)

This commit is contained in:
Fayaz Ahmed
2022-06-16 11:02:32 +05:30
committed by GitHub
parent 644f07a23d
commit 205d42e978
3 changed files with 14 additions and 9 deletions

View File

@@ -110,7 +110,7 @@ export default {
.labels-list {
display: flex;
flex-direction: column;
max-height: 24rem;
max-height: var(--space-giga);
min-height: auto;
.labels-list__header {
@@ -157,8 +157,8 @@ export default {
border-radius: var(--border-radius-large);
border: 1px solid var(--s-50);
box-shadow: var(--shadow-dropdown-pane);
max-width: 24rem;
min-width: 24rem;
max-width: var(--space-giga);
min-width: var(--space-giga);
position: absolute;
right: 4.5rem;
top: var(--space-larger);
@@ -176,7 +176,7 @@ export default {
}
.container {
max-height: 24rem;
max-height: var(--space-giga);
overflow-y: auto;
.label__list-container {
@@ -204,7 +204,7 @@ export default {
.triangle {
display: block;
position: absolute;
right: 2rem;
right: var(--space-two);
text-align: left;
top: calc(var(--space-slab) * -1);
z-index: var(--z-index-one);