Skip to content

Commit a49f65c

Browse files
fix(css): ! in md:hidden (#8276)
* fix(css): `!` in `md:hidden` * fixup! * handle all viewports for complementary tab or select --------- Co-authored-by: Brian Muenzenmeyer <brian.muenzenmeyer@gmail.com>
1 parent 6433784 commit a49f65c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

packages/ui-components/src/Common/BaseLinkTabs/index.module.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
.tabsList {
44
@apply font-open-sans
5-
max-xs:hidden
65
mb-6
76
mt-10
87
flex
98
gap-2
109
border-b
1110
border-b-neutral-200
11+
max-md:hidden
1212
dark:border-b-neutral-800;
1313

1414
.tabsTrigger {
@@ -38,5 +38,5 @@
3838
}
3939

4040
.tabsSelect {
41-
@apply md:hidden;
41+
@apply md:hidden!;
4242
}

packages/ui-components/src/Common/BaseLinkTabs/index.stories.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ export const Default: Story = {
2727
],
2828
activeTab: 'prebuilt',
2929
children: <p>Tab content goes here</p>,
30-
onSelect: console.log,
3130
},
3231
};
3332

0 commit comments

Comments
 (0)