mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
* Add spinner for running query * fixing lint * Adding in check for this.socket * Full height results area with centered spinner * Don't hide table if query is stopped * Remove results container if no results yet * No more console.log
17 lines
323 B
SCSS
17 lines
323 B
SCSS
.query-page {
|
|
@at-root .has-sidebar > &__content {
|
|
@include display(flex);
|
|
@include flex-direction(column);
|
|
@include align-self(stretch);
|
|
margin-bottom: $pad-base;
|
|
}
|
|
|
|
&__results {
|
|
@include display(flex);
|
|
@include flex-grow(1);
|
|
|
|
&--loading {
|
|
@include align-items(center);
|
|
}
|
|
}
|
|
}
|