Skip to content

Commit d8cc5f0

Browse files
committed
fix css overriding errors
1 parent 3ffb30e commit d8cc5f0

6 files changed

Lines changed: 6 additions & 23 deletions

File tree

src/app/about/page.css

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@
88
justify-content: center;
99
align-items: center;
1010
gap: var(--xl-gap);
11-
}
1211

13-
#about {
1412
.image {
1513
height: 100%;
1614
display: flex;

src/app/blog/page.css

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
#projectList {
22
display: flex;
33
flex-direction: column;
4-
gap: var(--md-gap)
5-
}
6-
7-
#projectList {
4+
gap: var(--md-gap);
5+
86
.tagListings {
97
display: flex;
108
flex-direction: row;

src/app/page.css

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,12 @@
77
align-items: center;
88
justify-content: center;
99
gap: var(--xl-gap);
10-
}
1110

12-
#home {
1311
a {
1412
text-decoration-thickness: 3px;
1513
text-underline-offset: 3px;
1614
}
17-
}
1815

19-
#home {
2016
.ascii-container {
2117
width: 50%;
2218
display: flex;
@@ -38,4 +34,3 @@
3834
gap: var(--md-gap);
3935
}
4036
}
41-

src/app/projects/page.css

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,21 @@
1-
#projects {
2-
3-
}
4-
51
#projects {
62
.projectCard {
73
display: flex;
84
flex-direction: column;
95
gap: var(--lg-gap);
106
padding: var(--md-gap) 0;
117

12-
.projectHeader {
8+
/* .projectHeader {
139
14-
}
10+
} */
1511

1612
img {
1713
width: 100%;
1814
height: auto;
1915
}
2016

21-
.projectDescription {
17+
/* .projectDescription {
2218
23-
}
19+
} */
2420
}
2521
}

src/components/Nav/Nav.css

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
#nav {
22
position: absolute;
3-
}
43

5-
#nav {
64
.nav-links {
75
position: fixed;
86
z-index: 99;

src/components/Nav/Nav.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ export default function Nav() {
1111
const pathname = usePathname();
1212

1313
useEffect(() => {
14-
window.addEventListener('', () => {console.log("your mother")})
15-
1614
if (selector.current) {
1715
selector.current.style.visibility = "visible";
1816

0 commit comments

Comments
 (0)