Skip to content

Commit 3b32bcc

Browse files
committed
fix styles
1 parent 7e79ca4 commit 3b32bcc

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

packages/app/src/app/pages/common/Modals/FeedbackModal/Feedback.tsx

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import {
99
Stack,
1010
Button,
1111
Textarea,
12+
Text,
1213
} from '@codesandbox/components';
1314
import React, {
1415
ChangeEvent,
@@ -113,19 +114,21 @@ const Feedback: FunctionComponent<Props> = ({ id, user }) => {
113114
variant={emoji === 'happy' ? 'primary' : 'secondary'}
114115
onClick={setHappy}
115116
>
116-
<span aria-label="happy" role="img">
117+
{/* eslint-disable-next-line jsx-a11y/accessible-emoji */}
118+
<Text size={4} as="span" aria-label="happy" role="img">
117119
😊
118-
</span>
120+
</Text>
119121
</Button>
120122

121123
<Button
122124
css={css({ width: 'auto' })}
123125
variant={emoji === 'sad' ? 'primary' : 'secondary'}
124126
onClick={setSad}
125127
>
126-
<span aria-label="sad" role="img">
128+
{/* eslint-disable-next-line jsx-a11y/accessible-emoji */}
129+
<Text size={4} as="span" aria-label="sad" role="img">
127130
😞
128-
</span>
131+
</Text>
129132
</Button>
130133
</Stack>
131134

packages/app/src/app/pages/common/Modals/StorageManagementModal/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const StorageManagementModal: FunctionComponent = () => {
2424
</Text>
2525
{!isEmpty && !isLoading && <FilesList />}
2626
{isEmpty && (
27-
<Text align="center" weight="bold">
27+
<Text align="center" weight="bold" block marginTop={6} marginBottom={6}>
2828
You have no uploaded files.
2929
</Text>
3030
)}

0 commit comments

Comments
 (0)