Skip to content

Commit

Permalink
Merge branch 'main' into feat/FSADT1-999
Browse files Browse the repository at this point in the history
  • Loading branch information
paulushcgcj authored Nov 22, 2023
2 parents 6d0ce48 + 9c34c34 commit ee09580
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
10 changes: 10 additions & 0 deletions frontend/src/assets/styles/global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
--light-theme-miscellaneous-interactive: #0073e6;
--light-theme-background-background-selected: #93939533;
--light-theme-text-text-disabled: rgba(19, 19, 21, 0.25);
--light-theme-text-text-on-color: #FFFFFF;

//Buttons
--cds-button-disabled: #c6c6c8;
Expand Down Expand Up @@ -1006,6 +1007,15 @@ cds-header-global-action {
background: var(--light-theme-layer-layer-02, #FFF) !important;
}

cds-header-menu-button::part(svg) {
width: 1rem;
height: 1rem;
}

cds-header-menu-button:not([active])::part(svg) {
fill: var(--light-theme-text-text-on-color, #FFF);
}

cds-header-global-action svg {
fill: var(--dark-theme-focus-focus);
}
Expand Down
4 changes: 3 additions & 1 deletion frontend/src/components/MainHeaderComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,9 @@ watchEffect((onCleanup) => {
<cds-header-menu-button
v-if="$session?.user?.provider === 'idir'"
button-label-active="Close menu"
button-label-inactive="Open menu">
button-label-inactive="Open menu"
v-shadow="2"
>
</cds-header-menu-button>

<a href="https://gov.bc.ca" v-if="$session.user?.provider !== 'idir'" class="bclogotop">
Expand Down

0 comments on commit ee09580

Please sign in to comment.