Skip to content

Commit d270dce

Browse files
Use default class and vars
1 parent 0f05cb3 commit d270dce

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

assets/src/dashboard/parts/connect/index.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -166,11 +166,11 @@ const ConnectLayout = () => {
166166

167167
<div className={ connectContainerClasses }>
168168
<div className="optml-connect__content basis-8/12">
169-
<div className="inline-block bg-light-blue text-slate-gray text-sm font-medium px-4 py-1.5 rounded-full mb-4">{ optimoleDashboardApp.strings.account_needed_trust_badge }</div>
169+
<div className="inline-block bg-light-blue text-gray-500 text-sm font-medium px-4 py-1.5 rounded-full mb-4">{ optimoleDashboardApp.strings.account_needed_trust_badge }</div>
170170

171171
<div className="text-gray-700 font-serif text-26 font-bold leading-7 m-0">{ optimoleDashboardApp.strings.account_needed_heading }</div>
172172
<p
173-
className="text-base font-normal text-slate-gray"
173+
className="text-base font-normal text-gray-500"
174174
dangerouslySetInnerHTML={ { __html: optimoleDashboardApp.strings.account_needed_sub_heading } }
175175
/>
176176

@@ -179,28 +179,28 @@ const ConnectLayout = () => {
179179
</div>
180180

181181
<p
182-
className="text-15 text-gray-700 mb-5 leading-normal"
182+
className="text-sm text-gray-700 mb-5 leading-normal"
183183
dangerouslySetInnerHTML={ { __html: optimoleDashboardApp.strings.account_needed_title } }
184184
/>
185185

186186

187-
<div className="flex py-3">
187+
<div className="flex py-3 items-center">
188188
<Icon icon="yes-alt" />
189189
<p
190190
className="text-base ml-3 m-0"
191191
dangerouslySetInnerHTML={ { __html: optimoleDashboardApp.strings.account_needed_subtitle_1 } }
192192
/>
193193
</div>
194194

195-
<div className="flex py-3">
195+
<div className="flex py-3 items-center">
196196
<Icon icon="yes-alt" />
197197
<p
198198
className="text-base ml-3 m-0"
199199
dangerouslySetInnerHTML={ { __html: optimoleDashboardApp.strings.account_needed_subtitle_2 } }
200200
/>
201201
</div>
202202

203-
<div className="flex py-3">
203+
<div className="flex py-3 items-center">
204204
<Icon icon="yes-alt" />
205205
<p
206206
className="text-base ml-3 m-0"
@@ -259,7 +259,7 @@ const ConnectLayout = () => {
259259
{ optimoleDashboardApp.strings.api_exists }
260260
</Button>
261261

262-
<div class="flex items-center justify-center text-s text-gray-600 mb-4">
262+
<div class="flex items-center justify-center text-gray-600 mb-4">
263263
<span class="mr-1.5">🔒</span>{ optimoleDashboardApp.strings.secure_connection }
264264
</div>
265265

tailwind.config.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,14 @@ module.exports = {
2525
'stale-yellow': '#FFF0C9',
2626
'mango-yellow': '#FBBF24',
2727
'disabled': '#6786F4',
28-
'light-gray': 'rgba(87, 123, 249, 0.36)',
29-
'slate-gray': '#646970'
28+
'light-gray': 'rgba(87, 123, 249, 0.36)'
3029
},
3130
fontFamily: {
3231
'serif': [ '-apple-system', 'BlinkMacSystemFont', 'sans-serif' ]
3332
},
3433
fontSize: {
3534
'2': '2rem',
3635
's': '13px',
37-
'15': '15px',
3836
'26': '26px',
3937
},
4038
maxWidth: {

0 commit comments

Comments
 (0)