Skip to content

Commit

Permalink
more css
Browse files Browse the repository at this point in the history
  • Loading branch information
bonomite committed Jun 5, 2024
1 parent 602965f commit b24f735
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions components/RadiolabHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ onUnmounted(() => {
v-if="isMenuVisible"
class="content flex lg:block align-items-center justify-content-between lg:px-2 pr-3"
>
<Menubar :model="menuItems" ref="pMenuRef" breakpoint="1180px">
<Menubar :model="menuItems" ref="pMenuRef">
<template #start>
<nuxt-link
to="/"
Expand All @@ -51,9 +51,14 @@ onUnmounted(() => {
</nuxt-link>
</template>
</Menubar>
<v-flexible-link raw to="/the-lab" aria-label="Become a member">
<v-flexible-link
raw
to="/the-lab"
aria-label="Become a member"
class="mobile-bm-button"
>
<Button
class="flex lg:hidden p-button-rounded"
class="flex p-button-rounded"
@click="
$analytics.sendEvent('click_tracking', {
event_category: 'Click Tracking',
Expand Down Expand Up @@ -143,6 +148,11 @@ onUnmounted(() => {
.content {
width: 100%;
padding: 0;
.mobile-bm-button {
@media (min-width: 961px) {
display: none;
}
}
}
.p-menubar:not(.p-menubar-mobile-active) {
Expand Down

0 comments on commit b24f735

Please sign in to comment.