tangled
alpha
login
or
join now
leaflet.pub
/
leaflet
289
fork
atom
a tool for shared writing and social publishing
289
fork
atom
overview
issues
28
pulls
pipelines
a couple more such fixes
cozylittle.house
3 months ago
ce082f44
5d2e4f1f
+5
-4
2 changed files
expand all
collapse all
unified
split
components
Pages
PublicationMetadata.tsx
Tags.tsx
+1
-1
components/Pages/PublicationMetadata.tsx
···
262
263
return (
264
<Popover
265
-
className="p-2! w-[1000px] max-w-sm"
266
trigger={
267
<div className="addTagTrigger flex gap-1 hover:underline text-sm items-center text-tertiary">
268
<TagTiny />{" "}
···
262
263
return (
264
<Popover
265
+
className="p-2! w-full min-w-xs"
266
trigger={
267
<div className="addTagTrigger flex gap-1 hover:underline text-sm items-center text-tertiary">
268
<TagTiny />{" "}
+4
-3
components/Tags.tsx
···
150
return (
151
<div className="relative">
152
<Input
153
-
className="input-with-border grow w-full bg-test"
154
id="placeholder-tag-search-input"
155
value={tagInputValue}
156
-
placeholder="search tags..."
157
onChange={(e) => {
158
setTagInputValue(e.target.value);
159
setIsOpen(true);
···
174
document.getElementById("tag-search-input")?.focus();
175
}, 100);
176
}}
177
-
className="!w-full px-2! py-2!"
178
sideOffset={-39}
179
onOpenAutoFocus={(e) => e.preventDefault()}
180
asChild
···
190
<Input
191
className="input-with-border grow w-full mb-2"
192
id="tag-search-input"
0
193
value={tagInputValue}
194
onChange={(e) => {
195
setTagInputValue(e.target.value);
···
150
return (
151
<div className="relative">
152
<Input
153
+
className="input-with-border grow w-full outline-none!"
154
id="placeholder-tag-search-input"
155
value={tagInputValue}
156
+
placeholder="search tags…"
157
onChange={(e) => {
158
setTagInputValue(e.target.value);
159
setIsOpen(true);
···
174
document.getElementById("tag-search-input")?.focus();
175
}, 100);
176
}}
177
+
className="w-full p-2! min-w-xs"
178
sideOffset={-39}
179
onOpenAutoFocus={(e) => e.preventDefault()}
180
asChild
···
190
<Input
191
className="input-with-border grow w-full mb-2"
192
id="tag-search-input"
193
+
placeholder="search tags…"
194
value={tagInputValue}
195
onChange={(e) => {
196
setTagInputValue(e.target.value);