diff --git a/.editorconfig b/.editorconfig
index 6e87a00..9b73521 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -4,7 +4,7 @@ root = true
[*]
charset = utf-8
indent_style = space
-indent_size = 2
+indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true
diff --git a/src/app/animations/fade-in.animation.ts b/src/app/animations/fade-in.animation.ts
index 1604fd6..5472981 100644
--- a/src/app/animations/fade-in.animation.ts
+++ b/src/app/animations/fade-in.animation.ts
@@ -1,14 +1,14 @@
-import {trigger, state, animate, transition, style} from '@angular/animations';
+import { trigger, state, animate, transition, style } from '@angular/animations';
export const fadeInAnimation =
- trigger('fadeInAnimation', [
- // route 'enter' transition
- transition(':enter', [
+ trigger('fadeInAnimation', [
+ // route 'enter' transition
+ transition(':enter', [
- // styles at start of transition
- style({opacity: 0}),
+ // styles at start of transition
+ style({opacity: 0}),
- // animation and styles at end of transition
- animate('3s', style({opacity: 1}))
- ]),
- ]);
+ // animation and styles at end of transition
+ animate('3s', style({opacity: 1}))
+ ]),
+ ]);
diff --git a/src/app/animations/slide-in-out.animation.ts b/src/app/animations/slide-in-out.animation.ts
index dec25ca..530e2d3 100644
--- a/src/app/animations/slide-in-out.animation.ts
+++ b/src/app/animations/slide-in-out.animation.ts
@@ -1,51 +1,51 @@
-import {trigger, state, animate, transition, style} from '@angular/animations';
+import { trigger, state, animate, transition, style } from '@angular/animations';
export const slideInOutAnimation =
- trigger('slideInOutAnimation', [
+ trigger('slideInOutAnimation', [
- // end state styles for route container (host)
- state('*', style({
- // the view covers the whole screen with a semi tranparent background
- position: 'fixed',
- top: 0,
- left: 0,
- right: 0,
- bottom: 0,
- // backgroundColor: 'rgba(0, 0, 0, 0.8)'
- })),
+ // end state styles for route container (host)
+ state('*', style({
+ // the view covers the whole screen with a semi tranparent background
+ position: 'fixed',
+ top: 0,
+ left: 0,
+ right: 0,
+ bottom: 0,
+ // backgroundColor: 'rgba(0, 0, 0, 0.8)'
+ })),
- // route 'enter' transition
- transition(':enter', [
+ // route 'enter' transition
+ transition(':enter', [
- // styles at start of transition
- style({
- // start with the content positioned off the right of the screen,
- // -400% is required instead of -100% because the negative position adds to the width of the element
- top: '-100%',
+ // styles at start of transition
+ style({
+ // start with the content positioned off the right of the screen,
+ // -400% is required instead of -100% because the negative position adds to the width of the element
+ top: '-100%',
- // start with background opacity set to 0 (invisible)
- // backgroundColor: 'rgba(0, 0, 0, 0)'
- }),
+ // start with background opacity set to 0 (invisible)
+ // backgroundColor: 'rgba(0, 0, 0, 0)'
+ }),
- // animation and styles at end of transition
- animate('.5s ease-in-out', style({
- // transition the right position to 0 which slides the content into view
- top: 0,
+ // animation and styles at end of transition
+ animate('.5s ease-in-out', style({
+ // transition the right position to 0 which slides the content into view
+ top: 0,
- // transition the background opacity to 0.8 to fade it in
- // backgroundColor: 'rgba(0, 0, 0, 0.8)'
- }))
- ]),
+ // transition the background opacity to 0.8 to fade it in
+ // backgroundColor: 'rgba(0, 0, 0, 0.8)'
+ }))
+ ]),
- // route 'leave' transition
- transition(':leave', [
- // animation and styles at end of transition
- animate('.5s ease-in-out', style({
- // transition the right position to -400% which slides the content out of view
- top: '-100%',
+ // route 'leave' transition
+ transition(':leave', [
+ // animation and styles at end of transition
+ animate('.5s ease-in-out', style({
+ // transition the right position to -400% which slides the content out of view
+ top: '-100%',
- // transition the background opacity to 0 to fade it out
- // backgroundColor: 'rgba(0, 0, 0, 0)'
- }))
- ])
- ]);
+ // transition the background opacity to 0 to fade it out
+ // backgroundColor: 'rgba(0, 0, 0, 0)'
+ }))
+ ])
+ ]);
diff --git a/src/app/app.server.module.ts b/src/app/app.server.module.ts
index 877e2ee..2408e98 100644
--- a/src/app/app.server.module.ts
+++ b/src/app/app.server.module.ts
@@ -6,11 +6,12 @@ import { AppComponent } from './app.component';
import { ModuleMapLoaderModule } from '@nguniversal/module-map-ngfactory-loader';
@NgModule({
- imports: [
- AppModule,
- ServerModule,
- ModuleMapLoaderModule,
- ],
- bootstrap: [AppComponent],
+ imports: [
+ AppModule,
+ ServerModule,
+ ModuleMapLoaderModule,
+ ],
+ bootstrap: [AppComponent],
})
-export class AppServerModule {}
+export class AppServerModule {
+}
diff --git a/src/app/gallery/album/album.component.html b/src/app/gallery/album/album.component.html
index bcef6a4..168e44a 100644
--- a/src/app/gallery/album/album.component.html
+++ b/src/app/gallery/album/album.component.html
@@ -1,7 +1,7 @@