Skip to content

Commit

Permalink
mainmenubutton issue solve
Browse files Browse the repository at this point in the history
  • Loading branch information
Joyontokarmakar committed Jul 30, 2022
1 parent 6320601 commit 35534fa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion assets/css/tailwind.css
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ summary::-webkit-details-marker {
.linkHoverClass{
@apply border-l-2 hover:border-corporateGray;
}

.mainMenuClass{
@apply text-corporateGray font-bold text-lg;
}
Expand Down
10 changes: 5 additions & 5 deletions components/sideMenuForMediumDevice/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@
<div class="mt-5 space-y-2 overflow-y-auto h-[calc(100vh-185px)] py-2">
<div class="pr-3 flex flex-col justify-start gap-2">
<sidebarMainMenuButton :pathName ="'/'" :name="'Get Started'" :subMenu="false">
<svgHomeIcon fill="#8B8F9A" width="16" height="16" />
<svgHomeIcon :fill="'#8B8F9A'" :width="'16'" :height="'16'" />
</sidebarMainMenuButton>
<sidebarMainMenuButton :pathName ="'#'" :name="'Components'" :subMenu="false">
<svgComponentIcon fill="#8B8F9A" width="16" height="16" />
<svgComponentIcon :fill="'#8B8F9A'" :width="'16'" :height="'16'" />
</sidebarMainMenuButton>
<sidebarSubmenuButton :pathName ="'/component/button-design'" :name="'Button'" :subMenu="true"/>
<sidebarSubmenuButton :pathName ="'/component/accordion'" :name="'Accordion'" :subMenu="true"/>
<sidebarSubmenuButton :pathName ="'/component/dropdown'" :name="'Dropdown'" :subMenu="true"/>
<sidebarSubmenuButton :pathName ="'/component/floatingInput'" :name="'Floating Input'" :subMenu="true"/>
<sidebarMainMenuButton :pathName ="'/services'" :name="'Services'" :subMenu="false">
<svgServiceIcon fill="#8B8F9A" width="16" height="16" />
<svgServiceIcon :fill="'#8B8F9A'" :width="'16'" :height="'16'" />
</sidebarMainMenuButton>
<sidebarMainMenuButton :pathName ="'/about'" :name="'About'" :subMenu="false">
<svgIdeaIcon fill="#8B8F9A" width="16" height="16" />
<svgIdeaIcon :fill="'#8B8F9A'" :width="'16'" :height="'16'" />
</sidebarMainMenuButton>
<sidebarMainMenuButton :pathName ="'/contact'" :name="'Contact'" :subMenu="false">
<svgMobileIcon fill="#8B8F9A" width="16" height="16" />
<svgMobileIcon :fill="'#8B8F9A'" :width="'16'" :height="'16'" />
</sidebarMainMenuButton>
<!-- <dropdowns
:title="'Dropdown'"
Expand Down

0 comments on commit 35534fa

Please sign in to comment.