Skip to content

Commit 24f19a6

Browse files
committed
fix scoped styling
1 parent af0e39e commit 24f19a6

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

home/scripts/footer.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</span></p>
88
</template>
99

10-
<style>
10+
<style scoped>
1111
.footer {
1212
text-align: center;
1313
font-size: 1em;
@@ -28,9 +28,9 @@
2828
padding: 5px;
2929
position: absolute;
3030
z-index: 1;
31-
top: 125%; /* Position the tooltip below the text */
31+
top: 100%; /* Position the tooltip below the text */
3232
left: 50%;
33-
margin-left: -60px;
33+
transform: translateX(-50%); /* Center horizontally */
3434
opacity: 0;
3535
transition: opacity 0.3s;
3636
}

home/scripts/team.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<template>
22
<section class="team-section">
3+
<h1><strong>Meet the Team</strong></h1>
34
<div class="team-category">
45
<h2>Core Developers</h2>
56
<p>&nbsp;</p>
@@ -41,7 +42,7 @@ export default {
4142
};
4243
</script>
4344

44-
<style>
45+
<style scoped>
4546
.team-section {
4647
font-family: Arial, sans-serif;
4748
padding: 2em;

home/team.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,4 @@ sidebar: false
1212

1313
&nbsp;
1414

15-
# Meet the Team
16-
1715
<teamPage />

0 commit comments

Comments
 (0)