28 lines
453 B
SCSS
28 lines
453 B
SCSS
|
@import "/imports/ui/stylesheets/variables/_all";
|
||
|
|
||
|
.shortcutTable, .keyCell, .descCell, .tableTitle {
|
||
|
border: $border-size solid $color-gray-lighter;
|
||
|
}
|
||
|
|
||
|
.keyCell {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.descCell {
|
||
|
padding-right: $jumbo-padding-x !important;
|
||
|
}
|
||
|
|
||
|
.keyCell, .descCell {
|
||
|
padding: $sm-padding-x;
|
||
|
margin: auto;
|
||
|
}
|
||
|
|
||
|
.shortcutTable {
|
||
|
border-collapse: collapse;
|
||
|
margin: auto;
|
||
|
}
|
||
|
|
||
|
.tableTitle {
|
||
|
padding: $sm-padding-x;
|
||
|
}
|