Skip to content

Commit

Permalink
stakenclaimsecond merge
Browse files Browse the repository at this point in the history
  • Loading branch information
EmreKeskin47 committed May 24, 2022
1 parent 7ca8810 commit e655ec7
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions components/StakeNClaimSecond/index.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import InputWithIncDec from '../InputWithIncDec'
import styled from 'styled-components'
import { useContext, useState } from 'react'
import styled from 'styled-components'
import InfoOutlinedIcon from '@mui/icons-material/InfoOutlined'
import { Range, getTrackBackground } from 'react-range'
import { ToggleContext } from '../Layout/Layout'
import moment from 'moment'
import InfoOutlinedIcon from '@mui/icons-material/InfoOutlined'

import InputWithIncDec from '../InputWithIncDec'
import { ToggleContext } from '../Layout/Layout'

import { convertMicroDenomToDenom2, convertToFixedDecimals } from '../../util/conversion'
import Countdown from '../Countdown'
Expand Down Expand Up @@ -106,6 +107,12 @@ const MyStakedText = styled.label`
margin: 0 !important;
`

const InformationText = styled.label`
width: 100% !important;
border-bottom: 0px !important;
margin: 0 !important;
`

const MyReward = styled('div')<{ visible: boolean }>`
height: ${props => (props.visible ? 'initial' : '0')};
width: 100% !important;
Expand Down Expand Up @@ -166,7 +173,6 @@ const Tourch = styled('img')<{ visible: boolean }>`
height: ${props => (props.visible ? 'initial' : '0')};
filter: none !important;
`

const CustomHeaderCell = styled.th`
color: '#030f49 !important';
`
Expand Down Expand Up @@ -281,7 +287,7 @@ const StakeNClaimSecond = ({
maxWidth: 'unset',
}}
>
<span style={{ fontSize: '18px', height: 'unset', color: '#030f49' }}>{from}</span>
<span style={{ fontSize: '18px', height: 'unset' }}>{from}</span>
<InputWithIncDec
handleBurnMinus={handleToken1Minus}
burnAmount={token1Amount}
Expand All @@ -300,7 +306,7 @@ const StakeNClaimSecond = ({
maxWidth: 'unset',
}}
>
<span style={{ fontSize: '18px', height: 'unset', color: '#030f49' }}>{to}</span>
<span style={{ fontSize: '18px', height: 'unset' }}>{to}</span>
<InputWithIncDec
handleBurnMinus={handleToken2Minus}
burnAmount={token2Amount}
Expand Down

0 comments on commit e655ec7

Please sign in to comment.