We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18f30f3 commit 4e20b90Copy full SHA for 4e20b90
src/components/chapters/SideChapterBox.js
@@ -218,12 +218,17 @@ const SideChapterBox = ({
218
219
<div className="flex flex-col">
220
<FrameworkButton
221
+ className="bg-blue-lightest text-blue-darkest px-4 py-2 rounded mb-3"
222
onClick={() => toggleFramework("react")}
223
img={ReactIcon}
224
>
225
React posts
226
</FrameworkButton>
- <FrameworkButton onClick={() => toggleFramework("vue")} img={VueIcon}>
227
+ <FrameworkButton
228
+ className="bg-green-lightest text-green-darker px-4 py-2 rounded focus:border-green-darker focus:border"
229
+ onClick={() => toggleFramework("vue")}
230
+ img={VueIcon}
231
+ >
232
Vue posts
233
234
</div>
0 commit comments