Search: Constrain folder view (#49069)

This commit is contained in:
kay delaney 2022-05-17 12:36:34 +01:00 committed by GitHub
parent 44956aea66
commit e5925b2e91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -162,6 +162,7 @@ export default function SearchPage() {
className={css` className={css`
display: flex; display: flex;
flex-direction: column; flex-direction: column;
overflow: hidden;
`} `}
> >
<Input <Input
@ -215,6 +216,7 @@ export default function SearchPage() {
const getStyles = (theme: GrafanaTheme2) => ({ const getStyles = (theme: GrafanaTheme2) => ({
searchInput: css` searchInput: css`
margin-bottom: 6px; margin-bottom: 6px;
min-height: ${theme.spacing(4)};
`, `,
unsupported: css` unsupported: css`
padding: 10px; padding: 10px;

View File

@ -78,6 +78,7 @@ const getStyles = (theme: GrafanaTheme2) => {
wrapper: css` wrapper: css`
display: flex; display: flex;
flex-direction: column; flex-direction: column;
overflow: auto;
> ul { > ul {
list-style: none; list-style: none;