e140702784
* start to create asset list * begin refactoring overlay component to remove duplicate code * refactoring of overlays, asset list styles * changes to add size to asset list * fixes to asset list * handle case in which a user hasn't uploaded any assets * fix bug in which asset list only grabbed first asset * remove console.log * update overlay exit styling to use icon mixin
20 lines
410 B
SCSS
20 lines
410 B
SCSS
.keyboard-shortcuts {
|
|
padding: #{20 / $base-font-size}rem;
|
|
padding-bottom: #{40 / $base-font-size}rem;
|
|
width: #{450 / $base-font-size}rem;
|
|
}
|
|
|
|
.keyboard-shortcut-item {
|
|
display: flex;
|
|
& + & {
|
|
margin-top: #{10 / $base-font-size}rem;
|
|
}
|
|
align-items: baseline;
|
|
}
|
|
|
|
.keyboard-shortcut__command {
|
|
width: 50%;
|
|
font-weight: bold;
|
|
text-align: right;
|
|
padding-right: #{10 / $base-font-size}rem;
|
|
}
|