fix(core): update

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

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@designestate/dees-catalog',
version: '1.0.91',
version: '1.0.92',
description: 'website for lossless.com'
}

View File

@ -77,6 +77,7 @@ export class DeesInputText extends DeesElement {
transition: all 0.2s;
outline: none;
font-size: 16px;
font-family: "Roboto";
color: ${this.goBright ? '#333' : '#ccc'};
}

View File

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;
}