small css changes

This commit is contained in:
tidusjar 2020-04-02 21:02:15 +01:00
commit 065e16e5fe
3 changed files with 2 additions and 8 deletions

View file

@ -53,11 +53,7 @@ export class AppComponent implements OnInit {
public overlayContainer: OverlayContainer,
private storage: StorageService,
private signalrNotification: SignalRNotificationService,
private readonly snackBar: MatSnackBar) {
// __webpack_public_path__ = window['base-href']
private readonly snackBar: MatSnackBar) {
this.translate.addLangs(["en", "de", "fr", "da", "es", "it", "nl", "sk", "sv", "no", "pl", "pt"]);

View file

@ -1,13 +1,11 @@
$ombi-primary:#3f3f3f;
$card-background: #2b2b2b;
#cardImage {
max-height: 68%;
border-radius: 5px 5px 0px 0px;
}
.dark-card {
border-radius: 8px;
height: 435px;
}
.card-spacing {

View file

@ -32,7 +32,7 @@ export class MyNavComponent implements OnInit {
public ngOnInit(): void {
this.theme = this.store.get("theme");
if(!this.theme) {
this.store.save("theme","light");
this.store.save("theme","dark");
}
}