c0abe1e406
Moves all Route/model hook loading to use Outlet components which listen on route change.
15 lines
247 B
SCSS
15 lines
247 B
SCSS
@import './loader/index';
|
|
.consul-loader {
|
|
@extend %loader;
|
|
}
|
|
%loader circle {
|
|
fill: $magenta-100;
|
|
}
|
|
html.ember-loading .view-loader,
|
|
html[data-state='idle'] .view-loader {
|
|
display: none;
|
|
}
|
|
.outlet[data-state='loading'] {
|
|
display: none;
|
|
}
|