Skip to content

Commit

Permalink
[Explorer]: add bottom border for tab list (#13307)
Browse files Browse the repository at this point in the history
## Description 

Describe the changes or additions included in this PR.

## Test Plan 

How did you test the new or updated feature?

---
If your changes are not user-facing and not a breaking change, you can
skip the following section. Otherwise, please indicate what changed, and
then add to the Release Notes section as highlighted during the release
process.

### Type of Change (Check all that apply)

- [ ] protocol change
- [ ] user-visible impact
- [ ] breaking change for a client SDKs
- [ ] breaking change for FNs (FN binary must upgrade)
- [ ] breaking change for validators or node operators (must upgrade
binaries)
- [ ] breaking change for on-chain data layout
- [ ] necessitate either a data wipe or data migration

### Release notes
  • Loading branch information
plam-ml authored Aug 5, 2023
1 parent c42fe84 commit 0015ca3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/explorer/src/ui/Tabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,14 @@ const tabStyles = cva(
},
},
);

const tabListStyles = cva(['flex items-center border-gray-45'], {
variants: {
fullWidth: {
true: 'flex-1',
},
disableBottomBorder: {
true: '',
false: '!border-b',
false: 'border-b',
},
gap: {
3: 'gap-3',
Expand All @@ -56,6 +55,7 @@ const tabListStyles = cva(['flex items-center border-gray-45'], {
},
defaultVariants: {
gap: 6,
disableBottomBorder: false,
},
});

Expand Down

2 comments on commit 0015ca3

@vercel
Copy link

@vercel vercel bot commented on 0015ca3 Aug 5, 2023

Choose a reason for hiding this comment

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

Successfully deployed to the following URLs:

sui-typescript-docs – ./sdk/docs

sui-typescript-docs.vercel.app
sui-typescript-docs-mysten-labs.vercel.app
sui-typescript-docs-git-main-mysten-labs.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 0015ca3 Aug 5, 2023

Choose a reason for hiding this comment

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

Please sign in to comment.