Skip to content

Commit

Permalink
Merge pull request #1497 from levelkdev/feature/expeditions-button-re…
Browse files Browse the repository at this point in the history
…design

feature(expeditions): redesign expeditions button
  • Loading branch information
0xVenky committed Sep 20, 2022
2 parents f0247b8 + 38a70b0 commit d14d529
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/components/Header/HeaderButton.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
import styled from 'styled-components'

export const HeaderButton = styled.div`
export const HeaderButton = styled.div(
({ theme }) => `
display: flex;
flex-wrap: no-wrap;
align-items: center;
background: linear-gradient(90deg, #2e17f2 -24.77%, #fb52a1 186.93%);
border-radius: 8px;
padding: 6px 12px;
font-weight: bold;
font-size: 10px;
line-height: 10px;
line-height: 11px;
text-transform: uppercase;
cursor: pointer;
color: ${theme.text4};
background: ${theme.bg1};
`
)

0 comments on commit d14d529

Please sign in to comment.