Skip to content

Commit 46ae47f

Browse files
committed
Project Cards UI Fixed for Tablet
1 parent 59dcb4f commit 46ae47f

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

src/components/Projects/styles.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,15 +102,15 @@
102102
color: #222222;
103103
}
104104

105-
@media (max-width: 900px) {
105+
@media (max-width: 1200px) {
106106
.project {
107107
flex-direction: column;
108108
width: 90%;
109109
}
110110

111111
.project-img {
112112
width: 100%;
113-
max-width: 400px;
113+
max-width: max-content;
114114
}
115115

116116
.project-info p {

src/data/experience.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export const jobs = [
2828
},
2929
{
3030
id: uuidv4(),
31-
title: "Subject Matter Expert (CSE)",
31+
title: "Subject Matter Expert",
3232
company: "wikasta",
3333
dates: "may 2022 - june 2022",
3434
skills: ["DSA", "Core CS", "Machine Learning"],
@@ -40,7 +40,7 @@ export const jobs = [
4040
},
4141
{
4242
id: uuidv4(),
43-
title: "Software Developer & Sponsorship Coordinator",
43+
title: "Software Developer",
4444
company: "kalaamanch",
4545
dates: "march 2020 - september 2020",
4646
skills: ["HTML", "CSS", "Javascript"],

src/data/skills.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import {
2222
SiPostgresql,
2323
} from "react-icons/si";
2424
import { AiOutlineConsoleSql } from "react-icons/ai";
25+
import { RiNextjsFill, RiTailwindCssFill } from "react-icons/ri";
2526
import { v4 as uuidv4 } from "uuid";
2627

2728
export const category = [
@@ -85,6 +86,16 @@ export const category = [
8586
name: "javascript",
8687
icon: <DiJavascript1 />,
8788
},
89+
{
90+
id: uuidv4(),
91+
name: "next js",
92+
icon: <RiNextjsFill />,
93+
},
94+
{
95+
id: uuidv4(),
96+
name: "tailwind css",
97+
icon: <RiTailwindCssFill />,
98+
},
8899
],
89100
},
90101
{

0 commit comments

Comments
 (0)