Skip to content

Commit

Permalink
Merge pull request #402 from pulibrary/footer-logo-patch
Browse files Browse the repository at this point in the history
Fixes footer logo size
  • Loading branch information
sandbergja authored Dec 3, 2024
2 parents a21458d + 6000c86 commit e793dbd
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
11 changes: 10 additions & 1 deletion src/components/LuxLibraryFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="lux-footer-main">
<div class="lux-library-links contact-info-layout">
<div>
<lux-library-logo width="245" height="54" :theme="value(theme)" />
<lux-library-logo :theme="value(theme)" />
<lux-library-contact-info :theme="value(theme)" />
</div>
</div>
Expand Down Expand Up @@ -135,6 +135,15 @@ export default {
}
}
.lux-library-logo {
margin: 1rem 1rem 1rem 0;
width: 12rem;
@media (min-width: 900px) {
margin: 0 1rem 1rem 0;
width: 14rem;
}
}
.subscribe-layout {
@media (min-width: 900px) {
border-right: 1px solid rgba(255, 255, 255, 0.3);
Expand Down
4 changes: 2 additions & 2 deletions src/components/LuxLibraryHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ export default {
margin: 0.5rem 0 0.5rem 0.5rem;
width: 7rem;
@media (min-width: 900px) {
margin: 1rem !important;
width: 10rem !important;
margin: 1rem;
width: 10rem;
}
}
Expand Down
1 change: 0 additions & 1 deletion src/components/LuxMenuBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,6 @@ export default {
unmounted: function (el, binding) {
// Remove Event Listeners
console.log("unmounted")
document.removeEventListener("click", el.__vueClickOutside__)
el.__vueClickOutside__ = null
},
Expand Down
1 change: 1 addition & 0 deletions src/components/LuxUniversityFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@ export default {
padding: 0.5rem 0 0.5rem 0;
@media (min-width: 900px) {
flex: 1;
padding-left: 0.5rem;
}
.policy-links {
Expand Down

0 comments on commit e793dbd

Please sign in to comment.