Skip to content

Commit b94f260

Browse files
fix: emoji icons size
1 parent 42500a3 commit b94f260

File tree

2 files changed

+35
-6
lines changed

2 files changed

+35
-6
lines changed

.env.example

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# rename this file to .env and supply the values listed below
2+
# also make sure they are available to the build tool (e.g. Netlify)
3+
# warning: variables prefixed with NEXT_PUBLIC_ will be made available to client-side code
4+
# be careful not to expose sensitive data (e.g. your Algolia admin key)
5+
6+
# Algolia environment (app ID, search key and base search index name required for search)
7+
# NEXT_PUBLIC_ALGOLIA_APP_ID=insertValue
8+
# NEXT_PUBLIC_ALGOLIA_SEARCH_KEY=insertValue
9+
# NEXT_PUBLIC_ALGOLIA_BASE_SEARCH_INDEX_NAME=insertValue
10+
# NEXT_PUBLIC_GITHUB_TOKEN_READ_ONLY=insertValue
11+
12+
# Etherscan API key (required for Etherscan API fetches)
13+
# ETHERSCAN_API_KEY=insertValue
14+
15+
# Google API key and Calendar ID (required to fetch Calendar events)
16+
# GOOGLE_API_KEY=
17+
# GOOGLE_CALENDAR_ID=
18+
19+
# Matomo environment (URL and site ID required for analytics)
20+
NEXT_PUBLIC_MATOMO_URL=
21+
NEXT_PUBLIC_MATOMO_SITE_ID=
22+
23+
# Used to avoid loading Matomo in our preview deploys
24+
IS_PREVIEW_DEPLOY=false
25+
26+
# Build pages only for the specified langs. Leave it empty to build all the langs
27+
# e.g. `en,fr` will only build English and French pages
28+
# Note: always include `en` as it is the default lang of the site
29+
BUILD_LOCALES=
30+
31+
# If resource constraints are being hit during builds, change LIMIT_CPUS to a
32+
# fixed number of CPUs (e.g. 2) to limit the demand during build time
33+
LIMIT_CPUS=

src/pages/wallets/index.tsx

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -117,12 +117,8 @@ const ChecklistItem = (props: HorizontalCardProps) => (
117117
<HorizontalCard
118118
border={0}
119119
display="flex"
120-
sx={{
121-
"& > span": {
122-
marginTop: "6.20px !important",
123-
display: "initial",
124-
},
125-
}}
120+
emojiSize={1.5}
121+
alignItems="flex-start"
126122
mb={4}
127123
{...props}
128124
/>

0 commit comments

Comments
 (0)