Skip to content

Commit

Permalink
Merge pull request #691 from secretkeylabs/release/v0.24.0
Browse files Browse the repository at this point in the history
release: v0.24.0 to develop
  • Loading branch information
teebszet committed Dec 1, 2023
2 parents 3515fbd + 2a9c394 commit f617f3c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 15 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "xverse-web-extension",
"description": "A Bitcoin wallet for Web3",
"version": "0.23.2",
"version": "0.24.0",
"private": true,
"engines": {
"node": "^18.18.2"
Expand Down
12 changes: 4 additions & 8 deletions src/app/screens/nftDashboard/notice.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ArrowRight, XCircle } from '@phosphor-icons/react';
import { StyledHeading } from '@ui-library/common.styled';
import { useTranslation } from 'react-i18next';
import styled from 'styled-components';
import { XCircle, ArrowRight } from '@phosphor-icons/react';
import { StyledHeading } from '@ui-library/common.styled';
import Theme from 'theme';

const Container = styled.div((props) => ({
Expand All @@ -10,7 +10,7 @@ const Container = styled.div((props) => ({
borderRadius: 12,
background: props.theme.colors.elevation6_600,
padding: 16,
marginTop: 24,
marginTop: props.theme.space.xs,
width: '100%',
}));

Expand All @@ -19,31 +19,27 @@ const Heading = styled(StyledHeading)`
`;

const Description = styled(StyledHeading)`
margin-top: ${(props) => props.theme.spacing(4)}px;
padding-right: ${(props) => props.theme.spacing(12)}px;
`;

const RowContainer = styled.div({
display: 'flex',
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'space-between',
});

const ButtonImage = styled.button({
backgroundColor: 'transparent',
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
});

const BundleLinkContainer = styled.button((props) => ({
display: 'inline-flex',
flexDirection: 'row',
alignItems: 'center',
marginTop: props.theme.spacing(4),
backgroundColor: 'transparent',
color: props.theme.colors.white_0,
marginTop: props.theme.space.xs,
transition: 'background-color 0.2s ease, opacity 0.2s ease',
':hover': {
color: props.theme.colors.white_200,
Expand Down
7 changes: 3 additions & 4 deletions src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -596,8 +596,8 @@
"MAYBE_LATER": "Maybe Later",
"ENABLE": "Enable",
"RARE_SATS_NOTICE_TITLE": "Don't see your rare sat?",
"RARE_SATS_NOTICE_DETAIL": "Currently, Xverse only supports the Rodarmor rarity index. Your sats may have other attributes.",
"SEE_SUPPORTED": "See supported rarity scale",
"RARE_SATS_NOTICE_DETAIL": "Xverse supports most rare sats, but your sats may have other attributes.",
"SEE_SUPPORTED": "See supported rarities",
"FROM_RARE_SAT_BUNDLE": "This inscription belongs to the same bundle as other assets. Transferring it will involve transferring the full bundle.",
"HOLDS_RARE_SAT": "This inscription holds a rare sat."
},
Expand Down Expand Up @@ -1128,9 +1128,8 @@
"SILK_ROAD": "Silkroad"
},
"RARITY_DETAIL": {
"TOP_TEXT": "Currently, only the default rarity scale is supported. Your sats could have other attributes.",
"LEARN_MORE": "Learn more",
"RARITY_INFO": "Currently, only the default rarity scale is supported. Your sats could have other attributes.",
"RARITY_INFO": "Looking for more rare sats? Your sats may have other attributes which are not supported yet.",
"SUPPORTED_RARITIES": "Supported rarities",
"MYTHIC": "The first sat of the genesis block.",
"LEGENDARY": "The first sat of each cycle.",
Expand Down

0 comments on commit f617f3c

Please sign in to comment.