File tree Expand file tree Collapse file tree 2 files changed +35
-6
lines changed Expand file tree Collapse file tree 2 files changed +35
-6
lines changed Original file line number Diff line number Diff line change
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 =
Original file line number Diff line number Diff line change @@ -117,12 +117,8 @@ const ChecklistItem = (props: HorizontalCardProps) => (
117
117
< HorizontalCard
118
118
border = { 0 }
119
119
display = "flex"
120
- sx = { {
121
- "& > span" : {
122
- marginTop : "6.20px !important" ,
123
- display : "initial" ,
124
- } ,
125
- } }
120
+ emojiSize = { 1.5 }
121
+ alignItems = "flex-start"
126
122
mb = { 4 }
127
123
{ ...props }
128
124
/>
You can’t perform that action at this time.
0 commit comments