mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-28 05:08:48 +01:00
18 lines
262 B
SCSS
Executable file
18 lines
262 B
SCSS
Executable file
@import '../@theme/styles/themes';
|
|
|
|
@include nb-install-component() {
|
|
::ng-deep router-outlet + * {
|
|
display: block;
|
|
animation: fade 1s;
|
|
|
|
@keyframes fade {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
}
|