a tool for shared writing and social publishing

a couple more such fixes

+5 -4
+1 -1
components/Pages/PublicationMetadata.tsx
··· 262 262 263 263 return ( 264 264 <Popover 265 - className="p-2! w-[1000px] max-w-sm" 265 + className="p-2! w-full min-w-xs" 266 266 trigger={ 267 267 <div className="addTagTrigger flex gap-1 hover:underline text-sm items-center text-tertiary"> 268 268 <TagTiny />{" "}
+4 -3
components/Tags.tsx
··· 150 150 return ( 151 151 <div className="relative"> 152 152 <Input 153 - className="input-with-border grow w-full bg-test" 153 + className="input-with-border grow w-full outline-none!" 154 154 id="placeholder-tag-search-input" 155 155 value={tagInputValue} 156 - placeholder="search tags..." 156 + placeholder="search tags…" 157 157 onChange={(e) => { 158 158 setTagInputValue(e.target.value); 159 159 setIsOpen(true); ··· 174 174 document.getElementById("tag-search-input")?.focus(); 175 175 }, 100); 176 176 }} 177 - className="!w-full px-2! py-2!" 177 + className="w-full p-2! min-w-xs" 178 178 sideOffset={-39} 179 179 onOpenAutoFocus={(e) => e.preventDefault()} 180 180 asChild ··· 190 190 <Input 191 191 className="input-with-border grow w-full mb-2" 192 192 id="tag-search-input" 193 + placeholder="search tags…" 193 194 value={tagInputValue} 194 195 onChange={(e) => { 195 196 setTagInputValue(e.target.value);