Skip to content
This repository was archived by the owner on Aug 19, 2023. It is now read-only.

Commit cd5fdf9

Browse files
authored
GH-92 Add padding to Team component for better matchup with navbar. Fix media query (#92)
1 parent 192158b commit cd5fdf9

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

src/components/team/Team.vue

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -72,18 +72,9 @@ export default {
7272
</script>
7373

7474
<style>
75-
@media only screen and (max-width: 1000px) {
76-
#team h1 {
77-
font-size: 30px;
78-
}
79-
80-
#team p {
81-
font-size: small;
82-
margin-bottom: 15%;
83-
}
84-
}
8575
8676
#team h1 {
77+
padding-top: 6.5rem;
8778
font-weight: 800;
8879
color: var(--white-gray);
8980
font-size: 40px;
@@ -105,4 +96,15 @@ export default {
10596
justify-content: center;
10697
align-items: stretch;
10798
}
99+
100+
@media only screen and (max-width: 1000px) {
101+
#team h1 {
102+
font-size: 30px;
103+
}
104+
105+
#team p {
106+
font-size: small;
107+
margin-bottom: 15%;
108+
}
109+
}
108110
</style>

0 commit comments

Comments
 (0)