File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
src/components/inputs/editor Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -161,13 +161,13 @@ export default function Editor(props: Props) {
161
161
linkEmbed ||
162
162
( images && images . length > 0 ) ||
163
163
embedSuggestions . size > 0
164
- ? "mb -3"
164
+ ? "my -3"
165
165
: ""
166
166
} `}
167
167
>
168
168
{ quote && < QuoteToPreview post = { quote } /> }
169
169
{ embedSuggestions . size > 0 && (
170
- < div className = "mb -3 flex flex-col gap-y-3" >
170
+ < div className = "my -3 flex flex-col gap-y-3" >
171
171
{ Array . from ( embedSuggestions ) . map ( ( link ) => (
172
172
< LinkCardPrompt
173
173
key = { link }
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export default function LinkCardPrompt(props: Props) {
11
11
return (
12
12
< button
13
13
onClick = { ( ) => onAddLinkCard ( link ) }
14
- className = "border-skin-base flex w-full items-center gap-3 rounded-2xl border p-3"
14
+ className = "bg-skin-base border-skin-base flex w-full items-center gap-3 rounded-2xl border p-3"
15
15
>
16
16
< span className = "text-skin-base w-fit shrink-0" > Add link card:</ span >
17
17
< span className = "text-skin-link-base line-clamp-1 shrink overflow-ellipsis break-all text-sm" >
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ export default function QuoteToPreview(props: Props) {
24
24
return (
25
25
< article
26
26
onClick = { toggleShowMore }
27
- className = "border-skin-base flex cursor-pointer items-start gap-1 rounded-2xl border p-2"
27
+ className = "bg-skin-base border-skin-base flex cursor-pointer items-start gap-1 rounded-2xl border p-2"
28
28
>
29
29
< Image
30
30
src = {
You can’t perform that action at this time.
0 commit comments