format fix
This commit is contained in:
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
<!DOCTYPE html>
|
<!doctype html>
|
||||||
<html lang="en" class="dark">
|
<html lang="en" class="dark">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
|
|||||||
@@ -275,6 +275,8 @@
|
|||||||
|
|
||||||
<style>
|
<style>
|
||||||
.main-view {
|
.main-view {
|
||||||
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3), 0 8px 12px 6px rgba(0, 0, 0, 0.15);
|
box-shadow:
|
||||||
|
0 4px 4px 0 rgba(0, 0, 0, 0.3),
|
||||||
|
0 8px 12px 6px rgba(0, 0, 0, 0.15);
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -91,6 +91,8 @@
|
|||||||
|
|
||||||
<style>
|
<style>
|
||||||
.memory-card {
|
.memory-card {
|
||||||
box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
|
box-shadow:
|
||||||
|
rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
|
||||||
|
rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -73,7 +73,10 @@ export class AssetStore {
|
|||||||
assets: AssetResponseDto[] = [];
|
assets: AssetResponseDto[] = [];
|
||||||
albumAssets: Set<string> = new Set();
|
albumAssets: Set<string> = new Set();
|
||||||
|
|
||||||
constructor(options: AssetStoreOptions, private albumId?: string) {
|
constructor(
|
||||||
|
options: AssetStoreOptions,
|
||||||
|
private albumId?: string,
|
||||||
|
) {
|
||||||
this.options = { ...options, size: TimeBucketSize.Month };
|
this.options = { ...options, size: TimeBucketSize.Month };
|
||||||
this.store$.set(this);
|
this.store$.set(this);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user