f71d32a464
WIP wip wip format wip Move from SCSS variables to CSS custom properties (variables) and add custom parameters for theming/skinning
32 lines
456 B
SCSS
32 lines
456 B
SCSS
@import "/imports/ui/stylesheets/variables/_all";
|
|
|
|
.shortcutTable,
|
|
.keyCell,
|
|
.descCell,
|
|
.tableTitle {
|
|
border: var(--border-size) solid var(--color-gray-lighter);
|
|
}
|
|
|
|
.keyCell {
|
|
text-align: center;
|
|
}
|
|
|
|
.descCell {
|
|
padding-right: var(--jumbo-padding-x) !important;
|
|
}
|
|
|
|
.keyCell,
|
|
.descCell {
|
|
padding: var(--sm-padding-x);
|
|
margin: auto;
|
|
}
|
|
|
|
.shortcutTable {
|
|
border-collapse: collapse;
|
|
margin: auto;
|
|
}
|
|
|
|
.tableTitle {
|
|
padding: var(--sm-padding-x);
|
|
}
|