Skip to content

Commit 7fa7cc8

Browse files
authored
Merge pull request #77 from sparrow-js/custom-template
fix template icon
2 parents b20e0fa + 813383b commit 7fa7cc8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/components/TemplatePanel.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -273,9 +273,9 @@ function TemplatePanel({settings, setSettings}: Props) {
273273
<h3 className="mt-4 text-sm text-gray-700">{item.title}</h3>
274274
<p className="mt-1 text-lg font-medium text-gray-900">{item.description}</p>
275275
</div>
276-
<div className="absolute right-2 flex gap-3 top-1">
276+
<div className="absolute right-2 flex gap-3 top-2">
277277
<span
278-
className="cursor-pointer text-xl"
278+
className="cursor-pointer border-2 border-black p-[2px] text-xs rounded-sm"
279279
onClick={(e) => {
280280
e.stopPropagation();
281281
setShowDialog(true);
@@ -286,7 +286,7 @@ function TemplatePanel({settings, setSettings}: Props) {
286286
<VscDebugAll />
287287
</span>
288288
<span
289-
className="cursor-pointer text-xl"
289+
className="cursor-pointer border-2 border-black p-[2px] text-xs rounded-sm"
290290
onClick={(e) => {
291291
e.stopPropagation();
292292
setShowDialog(true);

0 commit comments

Comments
 (0)