Skip to content

Commit 580ff7a

Browse files
committed
remove border.
1 parent f296f13 commit 580ff7a

File tree

2 files changed

+9
-13
lines changed

2 files changed

+9
-13
lines changed

src/styles/theme.ts

+8-8
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ export function cn(...inputs: ClassValue[]) {
77
}
88

99
export const text = {
10-
body: 'ock-font-family font-normal text-base leading-normal',
11-
caption: 'ock-font-family font-semibold text-xs leading-4',
12-
headline: 'ock-font-family font-semibold leading-normal',
13-
label1: 'ock-font-family font-semibold text-sm leading-5',
14-
label2: 'ock-font-family text-sm leading-5',
15-
legal: 'ock-font-family text-xs leading-4',
16-
title1: 'ock-font-family font-semibold text-2xl leading-9',
17-
title3: 'ock-font-family font-semibold text-xl leading-7',
10+
body: 'ock-font-family font-normal text-base',
11+
caption: 'ock-font-family font-semibold text-xs',
12+
headline: 'ock-font-family font-semibold',
13+
label1: 'ock-font-family font-semibold text-sm',
14+
label2: 'ock-font-family text-sm',
15+
legal: 'ock-font-family text-xs',
16+
title1: 'ock-font-family font-semibold text-2xl',
17+
title3: 'ock-font-family font-semibold text-xl',
1818
} as const;
1919

2020
export const pressable = {

src/wallet/components/WalletModal.tsx

+1-5
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,6 @@ export function WalletModal({
217217
onClick={handleCoinbaseWalletConnection}
218218
className={cn(
219219
border.radiusInner,
220-
border.lineDefault,
221220
text.body,
222221
pressable.alternate,
223222
color.foreground,
@@ -253,9 +252,7 @@ export function WalletModal({
253252
type="button"
254253
onClick={handleCoinbaseWalletConnection}
255254
className={cn(
256-
border.default,
257255
border.radiusInner,
258-
border.lineDefault,
259256
text.body,
260257
pressable.alternate,
261258
color.foreground,
@@ -272,7 +269,6 @@ export function WalletModal({
272269
onClick={handleWalletConnectConnector}
273270
className={cn(
274271
border.radiusInner,
275-
border.lineDefault,
276272
text.body,
277273
pressable.alternate,
278274
color.foreground,
@@ -290,7 +286,7 @@ export function WalletModal({
290286
color.foregroundMuted,
291287
text.legal,
292288
'flex flex-col items-center justify-center gap-1 px-4',
293-
'mt-4 w-[275px] text-center leading-3',
289+
'mt-4 w-[275px] text-center',
294290
)}
295291
>
296292
<span className="font-normal text-[10px] leading-[13px]">

0 commit comments

Comments
 (0)