Skip to content

Commit

Permalink
Fix panel overflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
atmgrifter00 committed Oct 23, 2024
1 parent fa56503 commit 4895d3a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nimble-components/src/tabs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
Tabs as FoundationTabs,
TabsOptions
} from '@microsoft/fast-foundation';
import { styles } from '../patterns/tabs/styles';
import { styles } from './styles';
import { template } from '../patterns/tabs/template';
import type { TabsOwner } from '../patterns/tabs/types';

Expand Down
10 changes: 10 additions & 0 deletions packages/nimble-components/src/tabs/styles.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { css } from '@microsoft/fast-element';
import { styles as tabsStyles } from '../patterns/tabs/styles';

export const styles = css`
${tabsStyles}
.tabpanel {
overflow: auto;
}
`;

0 comments on commit 4895d3a

Please sign in to comment.