Skip to content

Commit 12cb27f

Browse files
The icons in the docs page of the Keploy website do not hover the same way in the 'Languages' and the 'Dependencies Support' sections. Adding changes to fix this
Signed-off-by: ahmedgulabkhan <[email protected]>
1 parent c9d75e6 commit 12cb27f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/components/Intro.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function Languages() {
3737
to={useBaseUrl("/quickstart/samples-gin")}
3838
>
3939
<img
40-
className="h-8 w-8"
40+
className="h-8 w-8 transition hover:scale-110"
4141
src="/docs/img/golang.svg"
4242
alt="Go lang logo"
4343
/>
@@ -63,7 +63,7 @@ function Languages() {
6363
to={useBaseUrl("/quickstart/samples-django")}
6464
>
6565
<img
66-
className="h-8 w-8"
66+
className="h-8 w-8 transition hover:scale-110"
6767
src="/docs/img/python.svg"
6868
alt="Python logo"
6969
/>
@@ -142,7 +142,7 @@ function Frameworks() {
142142
className="flex flex-col items-center justify-center space-y-1 p-6 text-center hover:underline"
143143
>
144144
<img
145-
className="h-8 w-8"
145+
className="h-8 w-8 transition hover:scale-110"
146146
src="/docs/img/mongodb-logo.svg"
147147
alt="Docker logo"
148148
/>
@@ -155,7 +155,7 @@ function Frameworks() {
155155
className="flex flex-col items-center justify-center space-y-1 p-6 text-center hover:underline"
156156
>
157157
<img
158-
className="h-8 w-8"
158+
className="h-8 w-8 transition hover:scale-110"
159159
src="/docs/img/http-logo.svg"
160160
alt="HTTP logo"
161161
/>
@@ -168,7 +168,7 @@ function Frameworks() {
168168
className="flex flex-col items-center justify-center space-y-1 p-6 text-center hover:underline"
169169
>
170170
<img
171-
className="h-8 w-8"
171+
className="h-8 w-8 transition hover:scale-110"
172172
src="/docs/img/postgres-logo.svg"
173173
alt="PostgresSQL logo"
174174
/>
@@ -178,10 +178,10 @@ function Frameworks() {
178178
<li className="mt-5 flex flex-col space-y-3 text-lg">
179179
<Link
180180
to={useBaseUrl("/dependencies/redis")}
181-
className="flex flex-col items-center justify-center space-y-1 p-6 text-center "
181+
className="flex flex-col items-center justify-center space-y-1 p-6 text-center hover:underline"
182182
>
183183
<img
184-
className="h-8 w-8"
184+
className="h-8 w-8 transition hover:scale-110"
185185
src="/docs/img/redis-logo.svg"
186186
alt="Redis logo"
187187
/>

0 commit comments

Comments
 (0)