Skip to content

Commit f6a4167

Browse files
authored
Merge pull request #258 from tjklint/refactor(1page)
Refactor(1page)
2 parents 9e8a4c4 + a5bd4df commit f6a4167

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

src/components/techstack/techstack.scss

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
gap: 20px;
2020

2121
@media (max-width: 1024px) {
22-
grid-template-columns: 1fr 1fr;
22+
grid-template-columns: 1fr 1fr;
2323
}
2424

2525
@media (max-width: 500px) {
26-
grid-template-columns: 1fr;
26+
grid-template-columns: 1fr;
2727
}
2828

2929
.technology-category {
@@ -45,7 +45,7 @@
4545
gap: 10px;
4646

4747
@media (max-width: 1024px) {
48-
grid-template-columns: repeat(2, 1fr);
48+
grid-template-columns: repeat(2, 1fr);
4949
}
5050

5151
@media (max-width: 500px) {
@@ -57,19 +57,22 @@
5757
flex-direction: column;
5858
align-items: center;
5959
font-size: 1.2em;
60-
cursor: pointer;
6160
color: #fff;
61+
transition: color 0.3s ease;
62+
cursor: default; /* Ensures the cursor stays default */
6263

6364
i {
6465
font-size: 3em;
6566
margin-bottom: 10px;
66-
color: #fff;
67+
color: inherit;
68+
transition: inherit;
6769
}
6870

6971
p {
7072
margin: 0;
7173
text-align: center;
72-
color: #fff;
74+
color: inherit;
75+
transition: inherit;
7376
}
7477

7578
&:hover {

0 commit comments

Comments
 (0)