File size: 1,078 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
.suggestions {
width: 100%;
display: flex;
flex-direction: column;
z-index: 10; // Completely random, should use the mixin
}
.suggestions__item {
padding: 12px 16px;
background: var(--color-surface);
border: 1px solid var(--color-border-subtle);
border-top: 0;
font-size: 15px;
white-space: pre-wrap;
cursor: pointer;
text-align: left;
margin: 0;
&.has-highlight {
background-color: var(--color-neutral-0);
color: var(--color-text);
}
}
.suggestions__label {
&.is-emphasized {
font-weight: 600;
}
}
.suggestions__category-heading {
font-size: 10px;
font-weight: 600;
text-transform: uppercase;
padding: 12px 24px 8px 42px;
color: var(--color-neutral-400);
border-bottom: 1px solid var(--color-border-subtle);
}
.suggestions__title {
font-size: 10px;
color: var(--studio-gray-40);
background-color: #fff;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
text-transform: uppercase;
font-weight: 600;
padding: 16px 8px;
}
|