Skip to content

Commit

Permalink
Fix header+home header colours
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle1morel committed Sep 13, 2024
1 parent 081f204 commit 17676c4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
4 changes: 4 additions & 0 deletions frontend/src/components/layout/Header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ import { LoginButton } from '@/components/layout';
</template>

<style lang="scss" scoped>
h2 {
color: rgba(255, 255, 255, 0.9) !important;
}
#header-branding {
background-color: #003366;
color: white;
Expand Down
7 changes: 7 additions & 0 deletions frontend/src/views/HomeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,10 @@ const toHousing = (): void => {
}
}
</style>

<style scoped lang="scss">
h1,
h2 {
color: rgba(255, 255, 255, 0.9) !important;
}
</style>

0 comments on commit 17676c4

Please sign in to comment.