File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ export function SearchBar({
112
112
< div className = "mt-2" >
113
113
< button
114
114
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"
116
116
>
117
117
< span > { selectedTag } </ span >
118
118
< 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({
136
136
onClick = { ( ) => onTagSelect && onTagSelect ( tag ) }
137
137
className = { `px-3 py-1 rounded-md text-xs ${
138
138
selectedTag === tag
139
- ? 'bg- primary text-primary-foreground '
139
+ ? 'border-2 border- primary text-primary font-medium '
140
140
: 'bg-secondary text-secondary-foreground hover:bg-secondary/80'
141
141
} `}
142
142
>
@@ -158,7 +158,7 @@ export function SearchBar({
158
158
onClick = { ( ) => onTagSelect && onTagSelect ( tag ) }
159
159
className = { `px-2 py-1 rounded-md text-xs text-left truncate ${
160
160
selectedTag === tag
161
- ? 'bg- primary text-primary-foreground '
161
+ ? 'border-2 border- primary text-primary font-medium '
162
162
: 'hover:bg-accent hover:text-accent-foreground'
163
163
} `}
164
164
>
You can’t perform that action at this time.
0 commit comments