Skip to content

Commit 0726adf

Browse files
Amir SohelAmir Sohel
authored andcommitted
alignment fixed
1 parent ee746a8 commit 0726adf

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/App.scss

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ button {
289289
.search_icon {
290290
position: absolute;
291291
top: 16px;
292-
right: 42px;
292+
right: 62px;
293293
background: transparent;
294294
border: none;
295295
color: #9b9ea0;
@@ -307,3 +307,7 @@ button {
307307
overflow: visible;
308308
}
309309
}
310+
311+
@media (max-width:767px){
312+
.Search-result {width: 100%;}
313+
}

src/Components/Views/BasicInfo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function BasicInformation(props) {
2020
</div>
2121
<div className="col-sm-5 text-left">
2222
<div className="user-details pl-2">
23-
<h2 className="font-size-21 mb-0">{userInfo.name} </h2>
23+
<h2 className="font-size-21 mb-0 mt-3 mt-lg-0 mt-sm-0">{userInfo.name} </h2>
2424
{userInfo.isDeveloperProgramMember ? <img className="mr-2" style={{ width: 20 }} alt="DeveloperProgramMember" src={process.env.PUBLIC_URL + "/img/dev.png"} /> : ""}
2525
{userInfo.isCampusExpert ? <img className="mr-2" style={{ width: 20 }} alt="CampusExpert" src={process.env.PUBLIC_URL + "/img/campus_expert.png"} /> : ""}
2626
<p className="font-size-13 mb-1 mt-3">{userInfo.bio}</p>

0 commit comments

Comments
 (0)