Skip to content

Commit

Permalink
fix: responsivity adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
AloisSeckar committed Feb 24, 2024
1 parent c1a1c27 commit 2de4948
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
10 changes: 6 additions & 4 deletions components/TheFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@
<span v-else>
{{ author }}
</span>
powered by
<NuxtLink to="https://nuxt.com/">
Nuxt3
</NuxtLink>
<span class="hidden min-[575px]:inline">
powered by
<NuxtLink to="https://nuxt.com/">
Nuxt3
</NuxtLink>
</span>
|
<span class="pl-1 text-xs">
<NuxtLink to="/admin">
Expand Down
4 changes: 2 additions & 2 deletions components/TheMenu.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div class="px-4 py-1 bg-navy text-lg text-silver text-center space-x-8">
<NuxtLink to="/">
<NuxtLink to="/" class="">
<BaseIcon icon="home" size="1.5rem" :css-class="menuIcon" /> {{ $t('menu.index') }}
</NuxtLink>
<NuxtLink to="/articles">
Expand All @@ -9,7 +9,7 @@
<NuxtLink to="/galleries">
<BaseIcon icon="image" size="1.125rem" :css-class="menuIcon" /> {{ $t('menu.galleries') }}
</NuxtLink>
<NuxtLink to="/timeline">
<NuxtLink to="/timeline" class="text-nowrap">
<BaseIcon icon="timeline" size="1.125rem" :css-class="menuIcon" /> {{ $t('menu.timeline') }}
</NuxtLink>
<NuxtLink to="/books">
Expand Down
2 changes: 1 addition & 1 deletion components/item/Book.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="hidden sm:inline-block sm:w-32 p-2">
<BaseThumb :name="item.name" :image="item.thumb" :link="item.url" />
</div>
<div class="flex-1 p-2 pl-4">
<div class="flex-1 p-2 sm:pl-4">
<div>
<a :href="item.url" :title="item.name">
<strong>{{ item.name }}</strong>
Expand Down
2 changes: 1 addition & 1 deletion components/item/Link.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="hidden sm:inline-block sm:w-44 p-2">
<BaseThumb :name="item.name" :image="item.thumb" :link="item.url" landscape />
</div>
<div class="flex-1 p-2 pl-4">
<div class="flex-1 p-2 sm:pl-4">
<div>
<a :href="item.url" :title="item.url">
<strong>{{ item.name }}</strong>
Expand Down

0 comments on commit 2de4948

Please sign in to comment.