mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-24 21:12:38 -04:00
f8efc3e2ae
[web] Implement the editor's left menu in Offcanvas GitOrigin-RevId: 999e995d664b1dc958f56643f05e95b8aa2d6290
30 lines
590 B
SCSS
30 lines
590 B
SCSS
.hotkeys-modal {
|
|
font-size: var(--font-size-02);
|
|
|
|
h3:first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.hotkey {
|
|
margin-bottom: var(--spacing-05);
|
|
}
|
|
|
|
.description {
|
|
display: inline-block;
|
|
}
|
|
|
|
.combination {
|
|
padding: var(--spacing-02) var(--spacing-04);
|
|
border-radius: 3px;
|
|
background-color: var(--bg-dark-tertiary);
|
|
color: var(--white);
|
|
font-weight: 600;
|
|
margin-right: var(--spacing-03);
|
|
}
|
|
|
|
.hotkeys-modal-bottom-text {
|
|
background-color: var(--bg-light-secondary);
|
|
padding: var(--spacing-04);
|
|
border-radius: var(--border-radius-base);
|
|
}
|
|
}
|