-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add dark design choice Signed-off-by: Mirko Mollik <[email protected]> * Feat/extension (#47) * fix: set correct docker image names Signed-off-by: Mirko Mollik <[email protected]> * fix: extension Signed-off-by: Mirko Mollik <[email protected]> --------- Signed-off-by: Mirko Mollik <[email protected]> * fix: extension Signed-off-by: Mirko Mollik <[email protected]> * fix: readme Signed-off-by: Mustafa Alsalfiti <[email protected]> * fix: holder-app test Signed-off-by: Mustafa Alsalfiti <[email protected]> * remove comment from theme file Signed-off-by: Mirko Mollik <[email protected]> * fix: remove warnings from ci build Signed-off-by: Mirko Mollik <[email protected]> * fix: verifier build Signed-off-by: Mirko Mollik <[email protected]> --------- Signed-off-by: Mirko Mollik <[email protected]> Signed-off-by: Mirko Mollik <[email protected]> Signed-off-by: Mustafa Alsalfiti <[email protected]> Co-authored-by: Mirko Mollik <[email protected]> Co-authored-by: Mirko Mollik <[email protected]>
- Loading branch information
1 parent
ed4a788
commit d2fd65c
Showing
45 changed files
with
227 additions
and
189 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,16 @@ | ||
.mat-toolbar { | ||
background-color: #D7E3FF; | ||
.mat-toolbar{ | ||
padding: 10px 40px; | ||
height: 84px; | ||
position: fixed; | ||
bottom: 0px; | ||
} | ||
|
||
.info { | ||
font-size: 14px; | ||
} | ||
|
||
.content { | ||
height: calc(100vh - 84px); | ||
overflow: auto; | ||
width: 100%; | ||
padding-bottom: 84px; | ||
} | ||
|
||
.info { | ||
font-size: 14px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 6 additions & 1 deletion
7
apps/holder-backend/src/app/settings/entities/setting.entity.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,18 @@ | ||
import { Column, Entity, PrimaryColumn, PrimaryGeneratedColumn } from 'typeorm'; | ||
import { ApiHideProperty } from '@nestjs/swagger'; | ||
import { Column, Entity, PrimaryColumn } from 'typeorm'; | ||
|
||
@Entity() | ||
export class Setting { | ||
/** | ||
* The user that owns the key | ||
*/ | ||
@ApiHideProperty() | ||
@PrimaryColumn() | ||
user: string; | ||
|
||
@Column({ default: false }) | ||
auto: boolean; | ||
|
||
@Column({ default: false }) | ||
darkTheme: boolean; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.