Skip to content

Commit

Permalink
Change HomePage text colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Maksandre committed Mar 5, 2024
1 parent 285ffae commit 95c3b1f
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions docs/.vuepress/components/HomePageSections.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,14 @@ const menu: MenuItem[] = [
height: 40vh;
}
a {
color: var(--c-brand);
&:hover {
color: var(--c-text-hover);
}
}
.welcome {
display: flex;
flex-direction: column;
Expand Down Expand Up @@ -84,7 +92,7 @@ const menu: MenuItem[] = [
min-height: 250px;
max-height: 30vh;
align-items: flex-start;
background-color: var(--c-bg-lighter);
background-color: var(--c-bg-dark);
border-radius: 10px;
padding: 20px;
margin: 20px;
Expand All @@ -101,7 +109,7 @@ const menu: MenuItem[] = [
}
.item:hover {
background-color: var(--c-bg-dark);
background-color: var(--c-bg-lighter);
color: #333;
}
Expand All @@ -114,14 +122,7 @@ const menu: MenuItem[] = [
font-size: 24px;
line-height: 30px;
padding-bottom: 10px;
}
a {
color: var(--c-brand);
&:hover {
color: var(--c-text-hover);
}
color: var(--c-text);
}
.subtitle {
Expand All @@ -131,5 +132,6 @@ a {
line-height: 30px;
letter-spacing: -0.015em;
padding: 5px 0px 40px;
color: var(--c-text);
}
</style>

0 comments on commit 95c3b1f

Please sign in to comment.