73 lines
1.1 KiB
SCSS
73 lines
1.1 KiB
SCSS
html,
|
|
body {
|
|
height: 100%;
|
|
background-color: #2f2f2f;
|
|
color: #ffffffcc;
|
|
overflow: hidden;
|
|
}
|
|
|
|
//prevent scroll on dialog open
|
|
html.cdk-global-scrollblock {
|
|
overflow: hidden;
|
|
}
|
|
|
|
body {
|
|
// margin: 0;
|
|
font-family: 'Open Sans', sans-serif;
|
|
// height: 100vh;
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.full-width {
|
|
width: 100%;
|
|
}
|
|
|
|
div.mat-grid-tile-content {
|
|
padding: 15px;
|
|
}
|
|
|
|
.header-wrapper {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 0 16px;
|
|
|
|
height: 56px;
|
|
background-color: #333333;
|
|
}
|
|
|
|
// grid list
|
|
div.mat-grid-tile-content {
|
|
align-items: unset;
|
|
}
|
|
|
|
//meter-data-list
|
|
.meter-data-list-wrapper {
|
|
height: 270px;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
button {
|
|
border-radius: 0;
|
|
}
|
|
|
|
// mat-dialog
|
|
.mat-mdc-dialog-container {
|
|
.mat-mdc-dialog-title {
|
|
border-bottom: #a6a6a6 1px solid;
|
|
}
|
|
.mat-mdc-dialog-content {
|
|
}
|
|
.mat-mdc-dialog-actions {
|
|
border-top: #a6a6a6 1px solid;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: end;
|
|
}
|
|
}
|