Skip to content

Commit

Permalink
Fix 3.0.7 issues (#3866)
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidFyon authored Dec 9, 2024
1 parent 4335d35 commit c0551fa
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
8 changes: 8 additions & 0 deletions packages/synapse-bridge/src/patterns/FooterBar/FooterBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,7 @@ export default defineComponent({
<VBtn
v-bind="options.goTopBtn"
:aria-label="locales.goTopBtnLabel"
class="topbtn"
@click="scrollToTop"
>
<VIcon v-bind="options.goTopBtnIcon">
Expand Down Expand Up @@ -290,6 +291,13 @@ a {
flex-grow: 0 !important;
}
.topbtn {
display: flex;
width: 24px;
height: 24px;
padding: 16px !important;
}
// Use deep selector to style user content as well
.vd-footer-bar.v-theme--dark :deep() {
background-color: $vd-grey-darken-20 !important;
Expand Down
2 changes: 0 additions & 2 deletions packages/synapse-bridge/src/patterns/FooterBar/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ export const config = {
icon: 'true',
variant: 'text',
elevation: 0,
height: '24px',
width: '24px',
},
goTopBtnIcon: {
color: 'primary',
Expand Down
4 changes: 2 additions & 2 deletions packages/synapse-bridge/src/patterns/HeaderBar/HeaderBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -322,10 +322,10 @@ export default defineComponent({
text-transform: uppercase;
letter-spacing: 0.0892857143em;
&.v-tab:hover {
background: rgba($color: #fff, $alpha: 0.02);
background: rgba(255, 255, 255, 0.02);
}
&.v-tab--selected:hover {
background: rgba($color: #fff, $alpha: 0.1);
background: rgba(255, 255, 255, 0.1);
}
&.v-tab:not(.v-tab--selected) {
color: hsla(0, 0%, 100%, 0.6);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,9 @@ export default defineComponent({
<style lang="scss" scoped>
.vd-navigation-bar {
overflow: hidden;
a {
color: white;
}
}
.header-navigation-background {
background-color: v-bind(backgroundColor);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,11 @@ export default defineComponent({
.v-tab {
text-transform: uppercase;
letter-spacing: 0.0892857143em;
color: white;
}
.v-tab--selected {
background: rgba($color: #fff, $alpha: 0.1);
color: hsla(0,0%,100%,1);
}
}
}
Expand Down

0 comments on commit c0551fa

Please sign in to comment.