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

[CHORE]: Minor Fixes and Updates #107

Merged
merged 3 commits into from
Jun 11, 2024
Merged
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
32 changes: 18 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions src/assets/data/SponsorsContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import devcon from "../images/SponsorImages/devcon.png";
import filecoin from "../images/SponsorImages/filecoin.png";
import github from "../images/SponsorImages/github.png";
import graph from "../images/SponsorImages/graph.png";
import hackquest from "../images/SponsorImages/hackquest.png";
import xyz from "../images/SponsorImages/xyz.png";
import router from "../images/SponsorImages/router.png";
import jis from "../images/SponsorImages/jis.png";
Expand All @@ -25,6 +26,11 @@ const sponsors = {
img: graph,
link: "https://thegraph.com/",
},
{
name: "HackQuest",
img: hackquest,
link: "https://www.hackquest.io/",
},
],
Silver: [
{
Expand Down
Binary file added src/assets/images/SponsorImages/hackquest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 14 additions & 8 deletions src/components/private/venue/Venue.scss
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
margin-top: 2rem;
font-size: 2rem;
font-weight: 700;
text-align: center;

@media screen and (max-width: 576px) {
text-align: center;
Expand Down Expand Up @@ -75,7 +76,7 @@
display: none;
}

@media screen and (max-width: 576px) {
@media screen and (max-width: 720px) {
display: flex;
gap: 1rem;

Expand All @@ -85,16 +86,20 @@
}
}

@media screen and (max-width: 576px) {
@media screen and (max-width: 720px) {
.location_howtoreach {
display: none;
}

flex-direction: column;
gap: 0;
}

.location__btn {
padding: 1rem 1.4rem;
$padding-block: 1rem;
$padding-inline: 1.4rem;
$border-size: 2px;
padding: $padding-block $padding-inline;
margin: 0 1rem;
font-size: 1rem;
font-weight: 600;
Expand All @@ -106,16 +111,17 @@
cursor: pointer;
font-size: 1rem;
font-family: var(--heading-font);

transition: all 0.3s ease;
transition: background-color 0.3s ease;

&:hover {
background-color: #ff0000;
padding: calc(#{$padding-block} - #{$border-size}) calc(#{$padding-inline} - #{$border-size});
background-color: #1b1b1b;
border: 2px inset #ff1717;
}

@media screen and (max-width: 576px) {
@media screen and (max-width: 720px) {
margin: 0.5rem 0;
}
}
}
}
}
8 changes: 4 additions & 4 deletions src/components/shared/footer/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ const Footer = () => {
<div className="footer_flexdiv previous_season">
<div className="footer_content">
<div className="footer_policy">
<a href="https://s1.hack4bengal.tech/">1</a>
<a href="https://s2.hack4bengal.tech/">2</a>
<a href="https://s1.hack4bengal.tech/" target="_blank" rel="noopener noreferrer">1</a>
<a href="https://s2.hack4bengal.tech/" target="_blank" rel="noopener noreferrer">2</a>
</div>
</div>
</div>
Expand Down Expand Up @@ -70,8 +70,8 @@ const Footer = () => {
<img src={taxi} alt="Taxi" />
<p>Checkout our Previous Seasons</p>
<div className="season_linkdiv">
<a href="https://s1.hack4bengal.tech/">Season 1</a>
<a href="https://s2.hack4bengal.tech/">Season 2</a>
<a href="https://s1.hack4bengal.tech/" target="_blank" rel="noopener noreferrer">Season 1</a>
<a href="https://s2.hack4bengal.tech/" target="_blank" rel="noopener noreferrer">Season 2</a>
</div>
</div>
</footer>
Expand Down
Loading