Skip to content

Commit 4fb90aa

Browse files
committed
feat: added adb idea and fix colors
1 parent c0b19fb commit 4fb90aa

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

data/adb-idea.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"name": "adb-idea",
3+
"description": "A plugin for Android Studio and Intellij IDEA that speeds up your day to day android development.",
4+
"link": "https://github.com/pbreault/adb-idea",
5+
"tags": [
6+
"android-studio",
7+
"plugin",
8+
"adb"
9+
]
10+
}

src/components/ui/search-bar.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ export function SearchBar({
112112
<div className="mt-2">
113113
<button
114114
onClick={() => onTagSelect && onTagSelect(selectedTag)}
115-
className="px-3 py-1.5 rounded-md text-sm bg-primary text-primary-foreground flex items-center justify-between"
115+
className="px-3 py-1.5 rounded-md text-sm border-2 border-primary text-primary flex items-center justify-between"
116116
>
117117
<span>{selectedTag}</span>
118118
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">
@@ -136,7 +136,7 @@ export function SearchBar({
136136
onClick={() => onTagSelect && onTagSelect(tag)}
137137
className={`px-3 py-1 rounded-md text-xs ${
138138
selectedTag === tag
139-
? 'bg-primary text-primary-foreground'
139+
? 'border-2 border-primary text-primary font-medium'
140140
: 'bg-secondary text-secondary-foreground hover:bg-secondary/80'
141141
}`}
142142
>
@@ -158,7 +158,7 @@ export function SearchBar({
158158
onClick={() => onTagSelect && onTagSelect(tag)}
159159
className={`px-2 py-1 rounded-md text-xs text-left truncate ${
160160
selectedTag === tag
161-
? 'bg-primary text-primary-foreground'
161+
? 'border-2 border-primary text-primary font-medium'
162162
: 'hover:bg-accent hover:text-accent-foreground'
163163
}`}
164164
>

0 commit comments

Comments
 (0)