-
Notifications
You must be signed in to change notification settings - Fork 297
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1cb7177
commit 8da492f
Showing
8 changed files
with
1,128 additions
and
291 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
167 changes: 0 additions & 167 deletions
167
source/renderer/app/components/staking/widgets/ThumbPoolContent.scss
This file was deleted.
Oops, something went wrong.
35 changes: 35 additions & 0 deletions
35
source/renderer/app/components/staking/widgets/ThumbPoolContent.styles.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// @flow | ||
import SVGInline from 'react-svg-inline'; | ||
import styled from '@emotion/styled'; | ||
|
||
export const AdaIcon = styled(SVGInline)` | ||
svg { | ||
height: 11px; | ||
width: 10px; | ||
& > g { | ||
& > g { | ||
stroke: var(--theme-staking-wallet-row-ticker-ada-icon-fill-color); | ||
} | ||
} | ||
} | ||
`; | ||
|
||
export const ClockIcon = styled(SVGInline)` | ||
svg { | ||
height: 15px; | ||
width: 15px; | ||
} | ||
`; | ||
|
||
export const NoDataDashIcon = styled(SVGInline)` | ||
svg { | ||
height: 3px; | ||
width: 12px; | ||
path { | ||
fill: var(--theme-staking-stake-pool-grey-color) !important; | ||
opacity: 1 !important; | ||
} | ||
} | ||
`; |
Oops, something went wrong.