Skip to content

Commit

Permalink
Add border below tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolelim02 committed Oct 30, 2024
1 parent 21c4d2a commit ee43fb4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions frontend/src/pages/CollabSandbox/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -181,12 +181,13 @@ const CollabSandbox: React.FC = () => {
<Tabs
value={selectedTab}
onChange={(_, value) => setSelectedTab(value)}
sx={{
sx={(theme) => ({
position: "sticky",
top: 0,
zIndex: 10,
background: "white",
}}
borderBottom: `1px solid ${theme.palette.divider}`,
})}
>
<Tab label="Test Cases" value="tests" />
<Tab label="Chat" value="chat" />
Expand Down

0 comments on commit ee43fb4

Please sign in to comment.