Skip to content

Commit

Permalink
correct styling issue
Browse files Browse the repository at this point in the history
  • Loading branch information
MaHaWo committed Aug 20, 2024
1 parent 2335508 commit e9d58f4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/lib/components/AbstractContent.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
const contentContainerStyle = 'mx-auto max-w-6xl p-4';
</script>

<!-- Top element-->
<!-- Top element: basic navigation-->
<Navbar>
<NavBrand href="/">
<img src={logo_light} class="block h-16 dark:hidden" alt="MONDEY Logo" />
Expand All @@ -84,23 +84,23 @@
</div>
</Navbar>

<!--Content goes here-->
<!--Page content goes here-->
<div class={contentContainerStyle}>
<slot></slot>
</div>

{#if showBottomNavbar}
<!-- bottom element: back, info and next buttons-->
<BottomNav position="absolute" classInner={bottomNavStyle.bottomNavStyleInner}>
<BottomNavItem href={lastpage} btnName="Zurück" btnClass={bottomNavStyle.basicColorBehavior}>
<BottomNavItem href={lastpage} btnName="Zurück" btnClass={basicStyle.basicColorBehavior}>
<CaretLeftSolid class={bottomNavStyle.bottomBarBtnStyle} />
<Tooltip arrow={false}>Zur letzten Seite</Tooltip>
</BottomNavItem>
<BottomNavItem href={infopage} btnName="Hilfe" btnClass={bottomNavStyle.basicColorBehavior}>
<BottomNavItem href={infopage} btnName="Hilfe" btnClass={basicStyle.basicColorBehavior}>
<LightbulbSolid class={bottomNavStyle.bottomBarBtnStyle} />
<Tooltip arrow={false}>Hilfe</Tooltip>
</BottomNavItem>
<BottomNavItem href={nextpage} btnName="Weiter" btnClass={bottomNavStyle.basicColorBehavior}>
<BottomNavItem href={nextpage} btnName="Weiter" btnClass={basicStyle.basicColorBehavior}>
<CaretRightSolid class={bottomNavStyle.bottomBarBtnStyle} />
<Tooltip arrow={false}>Zur nächsten Seite</Tooltip>
</BottomNavItem>
Expand Down

0 comments on commit e9d58f4

Please sign in to comment.