Skip to content

Commit

Permalink
fixed buttons position
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidRaigozaJ committed Jun 28, 2023
1 parent 0c31b56 commit 51d3e74
Show file tree
Hide file tree
Showing 5 changed files with 176 additions and 319 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<h1 align="center">Games and Go</h2>
<p>As the world races forward, sometimes we yearn for the simpler times of the past. The Nostalgia Gaming Collection is here to take you on a journey back to the 90s, where you can relive the joy of classic games like Tic Tac Toe, Pacman, and many more. Let nostalgia transport you to a magical era and remind you to slow down and appreciate the simple pleasures of life.</p>
<h3 align="center"> It is indeed possible!! with Games-and-Go 🤩</h3>
<h2 align="center" >Checkout our Work at <a href="https://games.ieeessitvit.tech/">SSIT LIVE </a></h2>
<h2 align="center" >Checkout our Work at <a href="https://games.ieeessitvit.tech/">SSIT LIVE</a></h2>
<br>
</p>

Expand Down
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,9 @@
"html-loader": "^4.2.0",
"resolve-url-loader": "^5.0.0",
"sass": "^1.63.4"
}
},
"main": "index.js",
"repository": "https://github.com/DavidRaigozaJ/Games-and-Go",
"author": "DavidRaigozaJ <email>",
"license": "MIT"
}
8 changes: 6 additions & 2 deletions src/Homepage/Homepage/Homepage.css
Original file line number Diff line number Diff line change
Expand Up @@ -436,8 +436,12 @@ body {
transform: scale(1.025);
}

.container_card .card .content {
padding: 2rem 1.5rem;
.container_card .card .content .card-button {
position: relative;
display: inline-block;
padding: 0.50rem 0.5rem;
padding: 1rem 1rem;
margin-top: 15px;
height: 100%;
display: flex;
flex-direction: column;
Expand Down
2 changes: 1 addition & 1 deletion src/Homepage/Homepage/Homepage.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ function Homepage() {
{/* Flip card feature ends here. */}
<p>{row.about} </p>
{/* Create a route for your game and add it in AllRoutes.js in Routes folder then add the link in data1 in Data Folder */}
<Link to={row.link_game}>Play now !!!</Link>
<Link className="card-button" to={row.link_game}>Play now !!!</Link>
</div>
</div>
))}
Expand Down
Loading

0 comments on commit 51d3e74

Please sign in to comment.