Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed buttons position #637

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading