fix(core): update

This commit is contained in:
Philipp Kunz 2021-08-27 14:25:44 +02:00
parent e14d83b3a7
commit 888f07db79
2 changed files with 8 additions and 3 deletions

View File

@ -145,17 +145,21 @@ export class DeesButton extends DeesElement {
} }
.button.pending { .button.pending {
background: #0277bd70; border: 1px solid ${cssManager.bdTheme('#0277bd', '#0277bd70')};
background: ${cssManager.bdTheme('#0277bd', '#0277bd70')};
color: #fff; color: #fff;
} }
.button.success { .button.success {
background: #8BC34A70; border: 1px solid ${cssManager.bdTheme('#689F38', '#8BC34A70')};
background: ${cssManager.bdTheme('#689F38', '#8BC34A70')};
color: #fff; color: #fff;
} }
.button.error { .button.error {
background: #E64A1970; border: 1px solid ${cssManager.bdTheme('#B71C1C', '#E64A1970')};
background: ${cssManager.bdTheme('#B71C1C', '')};
background: ;
color: #fff; color: #fff;
} }

View File

@ -45,6 +45,7 @@ export class DeesSpinner extends DeesElement {
} }
#loading { #loading {
transition: none;
display: flex; display: flex;
justify-content: center; justify-content: center;
align-content: center; align-content: center;