Skip to content

Commit

Permalink
add gradient border top
Browse files Browse the repository at this point in the history
  • Loading branch information
adamsoffer committed May 1, 2024
1 parent 6eabf84 commit e334c7f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions packages/www/components/Nav/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,18 @@ const Nav = () => {
height: 70,
width: "100%",
px: "$4",
pt: "4px",
borderBottom: "1px solid rgba(255,255,255,.05)",
"&:before": {
position: "absolute",
content: '""',
width: "100%",
height: "4px",
left: 0,
top: 0,
background:
"linear-gradient(90deg, #DC3D42 0%, #F0C000 45.83%, #299764 70%, #3A5CCC 99.48%), #D9D9D9",
},
}}>
<A href="/">
<img src="/logo.svg" />
Expand Down

0 comments on commit e334c7f

Please sign in to comment.