Skip to content

Commit 3e21184

Browse files
authored
Merge pull request #129 from Deep1144/Deep1144
overlapping and padding issues fixes
2 parents 3957f9c + e578bbd commit 3e21184

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

src/components/ProjectList/css/cards-container.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,9 @@
66
padding: 1vw;
77
overflow: hidden;
88
}
9+
10+
@media screen and (max-width: 500px) {
11+
.containerLayout{
12+
padding: 15px;
13+
}
14+
}

src/components/ProjectList/css/search.css

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,23 @@
77

88
#search {
99
padding-left: 10px;
10-
padding-right: 10px;
1110
border: none;
1211
border-radius: 3px;
1312
width: 100%;
1413
height: 32px;
1514
font-size: 15px;
1615
text-align: center;
17-
margin-top: 1px;
1816
border: 1px solid #DCDCDC;
1917
}
2018

2119
.inputContainer {
2220
width: 47%;
2321
margin-top: 40px;
22+
}
23+
24+
@media screen and (max-width: 500px) {
25+
.inputContainer {
26+
width: 45%;
27+
margin-top: 40px;
28+
}
2429
}

0 commit comments

Comments
 (0)