Skip to content

Commit 4ffea09

Browse files
feat(frontend): ui improvements
1 parent b1eadf9 commit 4ffea09

4 files changed

Lines changed: 19 additions & 11 deletions

File tree

frontend/src/components/Navs/navLinks/style.module.css

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
.Link li {
22
color: #c7c7c7;
3-
/* color: white; */
43
font-size: 1.1rem;
54
font-weight: 600;
65
margin: 2vh 0 0 0;
@@ -12,22 +11,22 @@
1211
}
1312

1413
.first {
15-
transform: translatex(-11vh);
14+
transform: translatex(2vh);
1615
}
1716
.sec {
18-
transform: translatex(-7vh);
17+
transform: translatex(4vh);
1918
}
2019
.third {
21-
transform: translatex(-5vh);
20+
transform: translatex(5vh);
2221
}
2322
.fourth {
24-
transform: translatex(-4vh);
23+
transform: translatex(6vh);
2524
}
2625
.fifth {
27-
transform: translatex(-3vh);
26+
transform: translatex(8vh);
2827
}
2928
.sixth {
30-
transform: translatex(-2vh);
29+
transform: translatex(9vh);
3130
}
3231

3332
@media only screen and (max-width: 1180px) {

frontend/src/components/aboutUs/ContactUs.tsx

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,11 @@ const ContactUs: React.FC = () => {
4040
return (
4141
<div id="contact" className={classes.root}>
4242
<Container className={classes.flexbox}>
43-
<a href="#" target="_blank" className={classes.atag}>
43+
<a
44+
href="https://github.com/BitByte-TPC"
45+
target="_blank"
46+
className={classes.atag}
47+
>
4448
<GitHub className={classes.icon} fontSize="small" />
4549
<Typography className={classes.text} component="span">
4650
BitByte
@@ -52,7 +56,11 @@ const ContactUs: React.FC = () => {
5256
BitByte
5357
</Typography>
5458
</a>
55-
<a href="#" target="_blank" className={classes.atag}>
59+
<a
60+
href="mailto:theprogclub@iiitdmj.ac.in"
61+
target="_blank"
62+
className={classes.atag}
63+
>
5664
<Email className={classes.icon} fontSize="small" />
5765
<Typography className={classes.text} component="span">
5866
BitByte
251 KB
Loading

frontend/src/pages/homePage/style.module.css

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
display: grid;
55
grid-template-columns: 66fr 33fr;
66
grid-template-areas: "main nav";
7-
background-image: url("../../images/homepagebg.png");
8-
background-size: cover;
7+
background-image: url("../../images/homepagebgv2.png");
8+
background-size: 100% 100%;
9+
background-repeat: no-repeat;
910
}
1011
.container {
1112
grid-area: main;

0 commit comments

Comments
 (0)