We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46d54ac commit 286edfeCopy full SHA for 286edfe
1 file changed
src/components/search-icons.tsx
@@ -23,7 +23,7 @@ function SearchIcons() {
23
<h2 className="text-xl font-bold">Search</h2>
24
<Input placeholder="Search Icons" onChange={handleSearch} />
25
<ScrollArea className="flex max-h-[calc(100dvh-512px)] min-h-96 flex-col">
26
- <div className="grid grid-cols-2 gap-4 p-4 xl:grid-cols-3 2xl:grid-cols-4">
+ <div className="grid grid-cols-2 gap-4 px-4 xl:grid-cols-3 2xl:grid-cols-4">
27
{filteredIcons.map((icon, index) => (
28
<AddIconButton key={`icon-${index}`} icon={icon[1]} />
29
))}
0 commit comments