Skip to content

Commit

Permalink
Merge pull request #4071 from weaveworks/ReduceTabsWidthToFitLargeScreen
Browse files Browse the repository at this point in the history
override default tabs min-width at (600px) media query
  • Loading branch information
ahussein3 authored Oct 9, 2023
2 parents 8bdfe76 + cb2c224 commit 43c7d9f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ui/components/SubRouterTabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,9 @@ export default styled(SubRouterTabs).attrs({ className: SubRouterTabs.name })`
min-height: 32px;
width: fit-content;
@media (min-width: 600px) {
min-width: auto;
}
@media (min-width: 1440px) {
min-width: 132px;
}
}
Expand Down

0 comments on commit 43c7d9f

Please sign in to comment.