Skip to content

Commit

Permalink
Minor fixes GauravGupta993#2
Browse files Browse the repository at this point in the history
  • Loading branch information
GURMEHAR-PEC committed Sep 7, 2023
1 parent 5da0653 commit a53706b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/Components/Card.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default function Card(props) {
<img src={props.logo}/>
<h1> {props.title} </h1>
<p> {props.desc} </p>
<a href={props.link}>
<a href={props.link} target="_blank">
<h3> Read more </h3>
</a>
</div>
Expand Down
9 changes: 5 additions & 4 deletions src/Components/Contribute.css
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,10 @@

.mainform {
width: 55%;
padding: 30px;
padding: 15px 30px;
position: relative;
left: 150px;
height: 77%;
height: 82%;
top: 40px;
box-shadow: -0.5rem -0.5rem rgb(31, 95, 213), 0.5rem 0.5rem rgb(63, 117, 218);
}
Expand Down Expand Up @@ -184,9 +184,10 @@

.form-button button {
position: relative;
right: 8px;
bottom: 16px;
right: 0px;
padding: 4px;
width: 381px;
width: 385px;
font-size: 23px;
cursor: pointer;
border: 2px solid rgb(66, 9, 9);
Expand Down
4 changes: 2 additions & 2 deletions src/Components/Resource.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function Card(props) {
<h1> {props.title} </h1>
<h3> Branch : {props.Branch} </h3>
<h3> Semester : {props.Sem} </h3>
<a href={props.link}>
<a href={props.link} target="_blank">
<h3> Click to view resource </h3>
</a>
</div>
Expand All @@ -62,7 +62,7 @@ function Card(props) {
<h1> {props.title} </h1>
<h2> Branch : {props.Branch} </h2>
<h2> Semester : {props.Sem} </h2>
<a href={props.link}>
<a href={props.link} target="_blank">
<h3> Click to view resource </h3>
</a>
</div>
Expand Down

0 comments on commit a53706b

Please sign in to comment.