Skip to content

Commit

Permalink
fix(ScenesProfileExplorer): Make labels more responsive on smaller sc…
Browse files Browse the repository at this point in the history
…reens
  • Loading branch information
ifrost authored Aug 23, 2024
1 parent 5b4058a commit 10c97dc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,11 @@ const getStyles = (theme: GrafanaTheme2) => ({
`,
dataSourceVariable: css`
display: flex;
${theme.breakpoints.down('xl')} {
label {
display: none;
}
}
`,
variable: css`
display: flex;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ const getStyles = (theme: GrafanaTheme2) => ({
explorationTypeContainer: css`
display: flex;
align-items: center;
${theme.breakpoints.down('xl')} {
label {
display: none;
}
}
`,
breadcrumb: css`
height: 32px;
Expand Down

1 comment on commit 10c97dc

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unit test coverage

Lines Statements Branches Functions
Coverage: 11%
11.82% (464/3923) 9.29% (134/1441) 8.87% (107/1205)

Please sign in to comment.