🐛 Fix shortcuts menu being clipped

This commit is contained in:
Belén Albeza 2024-02-13 14:55:08 +01:00 committed by Andrey Antukh
parent bc3d268f57
commit f152e30737

View file

@ -7,39 +7,14 @@
@import "refactor/common-refactor.scss";
.shortcuts {
.shortcuts-header {
@include flexCenter;
@include tabTitleTipography;
position: relative;
height: $s-32;
padding: $s-2 $s-2 $s-2 0;
margin: $s-4 $s-4 0 $s-4;
border-radius: $br-6;
background-color: var(--panel-title-background-color);
display: grid;
grid-template-rows: auto auto 1fr;
// TODO: Fix this once we start implementing the DS.
// We should not be doign these hardcoded calc's.
height: calc(100vh - #{$s-60});
}
.shortcuts-title {
@include flexCenter;
flex-grow: 1;
color: var(--title-foreground-color-hover);
}
.shortcuts-close-button {
@extend .button-tertiary;
position: absolute;
right: $s-2;
top: $s-2;
height: $s-28;
width: $s-28;
border-radius: $br-5;
svg {
@extend .button-icon;
stroke: var(--icon-foreground);
}
}
}
.search-field {
.search-field {
display: flex;
align-items: center;
height: $s-32;
@ -98,18 +73,56 @@
stroke: var(--icon-foreground);
}
}
}
.shortcuts-header {
@include flexCenter;
@include tabTitleTipography;
position: relative;
height: $s-32;
padding: $s-2 $s-2 $s-2 0;
margin: $s-4 $s-4 0 $s-4;
border-radius: $br-6;
background-color: var(--panel-title-background-color);
.shortcuts-title {
@include flexCenter;
flex-grow: 1;
color: var(--title-foreground-color-hover);
}
.section {
margin: 0;
.shortcuts-close-button {
@extend .button-tertiary;
position: absolute;
right: $s-2;
top: $s-2;
height: $s-28;
width: $s-28;
border-radius: $br-5;
svg {
@extend .button-icon;
stroke: var(--icon-foreground);
}
.shortcuts-list {
}
}
.section {
margin: 0;
}
.not-found {
@include titleTipography;
color: var(--empty-message-foreground-color);
margin: $s-12;
}
.shortcuts-list {
display: flex;
flex-direction: column;
height: 90%;
height: 100%;
padding: $s-12;
margin-bottom: $s-12;
overflow-y: overlay;
overflow-y: scroll;
font-size: $fs-12;
color: var(--title-foreground-color);
@ -192,10 +205,4 @@
}
}
}
}
.not-found {
@include titleTipography;
color: var(--empty-message-foreground-color);
margin: $s-12;
}
}