fix(core): update

This commit is contained in:
2022-06-10 15:50:56 +02:00
parent 7b8218ab77
commit 6a357cb227
4 changed files with 9 additions and 7 deletions

View File

@ -106,7 +106,8 @@ export class DeesTable<T> extends DeesElement {
.mainbox {
color: ${cssManager.bdTheme('#333', '#fff')};
font-family: Roboto Mono;
padding: 20px;
font-size: 16px;
padding: 16px;
display: block;
width: 100%;
min-height: 50px;
@ -121,7 +122,7 @@ export class DeesTable<T> extends DeesElement {
table,
.noDataSet {
margin-top: 20px;
margin-top: 16px;
color: ${cssManager.bdTheme('#333', '#fff')};
border-collapse: collapse;
width: 100%;
@ -161,7 +162,7 @@ export class DeesTable<T> extends DeesElement {
border-right: 1px dashed ${cssManager.bdTheme('#999', '#808080')};
}
.innerCellContainer {
padding: 7px 10px;
padding: 6px 8px;
}
th:first-child .innerCellContainer,
td:first-child .innerCellContainer {
@ -177,11 +178,11 @@ export class DeesTable<T> extends DeesElement {
}
.tableStatistics {
padding: 5px 20px;
font-size: 14px;
padding: 4px 16px;
font-size: 12px;
color: ${cssManager.bdTheme('#111', '#ffffff90')};
background: ${cssManager.bdTheme('#eeeeeb', '#00000050')};
margin: 20px -20px -20px -20px;
margin: 16px -16px -16px -16px;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
}