Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions src/containerStyles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ app-flow-container {
}

.psdk-case-view-divider {
border-bottom: 0.0625rem solid var(--app-neutral-light-color);
border-bottom: 0.0625rem solid var(--mat-sys-outline-variant);
}

.psdk-flow-container-top {
background-color: var(--app-form-color);
padding: 0rem 0.625rem;
background-color: var(--mat-sys-surface-container);
padding: 0.5rem 0.625rem;
border-radius: 0.3125rem;
}
.psdk-flow-container {
Expand Down Expand Up @@ -42,7 +42,7 @@ app-modal-view-container {
align-items: center;
height: 100%;
width: 100%;
background-color: var(--app-dialog-background-color);
background-color: rgba(0, 0, 0, 0.6);
position: fixed;
z-index: 999;
top: 0px;
Expand All @@ -53,11 +53,11 @@ app-modal-view-container {
display: block;
margin: auto;
min-width: 650px;
background-color: var(--app-form-color);
border: 1px solid var(--app-inverse-form-color);
background-color: var(--mat-sys-surface-container);
border: 1px solid var(--mat-sys-outline-variant);
border-radius: 10px;
padding: 20px;
box-shadow: 0 0 10px 3px var(--app-box-shadow-color);
box-shadow: 0 0 10px 3px var(--mat-sys-level3);
overflow-y: auto;
}

Expand Down
20 changes: 7 additions & 13 deletions src/styles.scss
Original file line number Diff line number Diff line change
@@ -1,23 +1,17 @@
/* You can add global styles to this file, and also import other style files */
@import 'https://fonts.googleapis.com/icon?family=Material+Icons';
// @import '@angular/material/prebuilt-themes/deeppurple-amber.css';
/*@import "@angular/material/prebuilt-themes/pink-bluegrey.css";*/
@import './containerStyles.scss';
@import 'theme';
@import '@danielmoncada/angular-datetime-picker/assets/style/picker.min.css';

html,
body {
@include generate-theme-vars($my-theme);
}
@import 'containerStyles';
@import 'themes';

html,
body {
height: 100%;
}
body {
background-color: var(--mat-sys-background);
color: var(--mat-sys-on-background);
margin: 0;
font-family: Roboto, 'Helvetica Neue', sans-serif;
@include generate-theme-vars();
}

button.mat-mdc-menu-item {
Expand Down Expand Up @@ -83,6 +77,6 @@ a.mat-mdc-menu-item > mat-icon {
margin: 8px 0;
}

.ngx-mat-tel-input-container button {
margin-top: auto;
.details-communication-field {
color: var(--mat-sys-primary);
}
80 changes: 0 additions & 80 deletions src/theme.scss

This file was deleted.

Loading