Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix(css): ! in md:hidden (nodejs#8276)
* fix(css): `!` in `md:hidden`

* fixup!

* handle all viewports for complementary tab or select

---------

Co-authored-by: Brian Muenzenmeyer <[email protected]>
  • Loading branch information
avivkeller and bmuenzenmeyer authored Oct 29, 2025
commit a49f65c5676da4a2d0cb15feb0db196411179196
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

.tabsList {
@apply font-open-sans
max-xs:hidden
mb-6
mt-10
flex
gap-2
border-b
border-b-neutral-200
max-md:hidden
dark:border-b-neutral-800;

.tabsTrigger {
Expand Down Expand Up @@ -38,5 +38,5 @@
}

.tabsSelect {
@apply md:hidden;
@apply md:hidden!;
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ export const Default: Story = {
],
activeTab: 'prebuilt',
children: <p>Tab content goes here</p>,
onSelect: console.log,
},
};

Expand Down
Loading