Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
FroudeDescartes committed Nov 19, 2024
2 parents 4212251 + 37c7609 commit 7bb0666
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div :class="computedHeightClass" class="w-fit sm:w-full bg-golden/[0.2] dark:bg-[#19191a]"
<div :class="computedHeightClass" class="w-fit sm:w-screen bg-golden/[0.2] dark:bg-[#19191a]"
:style="{ fontFamily: main.font.type }">
<ShAnnouncement :class="['z-50', route.path !== '/' ? '' : 'sticky w-full top-0']" />
<AppHeader v-if="route.path !== '/'" class="flex py-4" title="OMA">
Expand Down
7 changes: 5 additions & 2 deletions components/app/footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<UContainer :class="ui.container">
<div class="flex justify-between sm:items-center sm:justify-around">
<span class="text-sm text-gray-500 sm:text-center dark:text-gray-400 flex items-center">
Copyright &copy; 2024. All Rights Reserved.
Copyright &copy; &nbsp; <div>{{ year }}</div>.
</span>
<ClientOnly>
<UButton :icon="isDark ? 'i-heroicons-moon-20-solid' : 'i-heroicons-sun-20-solid'" color="gray"
variant="ghost" aria-label="Theme" @click="isDark = !isDark" class="sm:mr-36" />
variant="ghost" aria-label="Theme" @click="isDark = !isDark" class="" />
<template #fallback>
<div class="w-8 h-8" />
</template>
Expand All @@ -21,6 +21,9 @@
<script setup lang="ts">
const colorMode = useColorMode()
const date = new Date();
const year = date.getFullYear();
const config = {
wrapper:
"py-1 sm:py-2 bottom-0 z-50 w-full bg-background/75 backdrop-blur border-t border-primary/[0.4] dark:border-primary/[0.4]", // removed fixed class
Expand Down
2 changes: 1 addition & 1 deletion components/content/sh-dynamic-table.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<div :class="getQuickFilterClass()">
<template v-for="column in sortedFilters">
<div class="rounded-lg border" v-if="column.filter">
<UDivider :label="column.title" class="py-4" />
<UDivider :label="column.title" class="py-4 overflow-x-auto" />
<ul class="max-h-36 overflow-auto">
<li v-for="label in Object.keys(stats[column.name]).sort()" :data-filter-key="column.name"
:data-filter-value="label" @click="onFilterChange"
Expand Down

0 comments on commit 7bb0666

Please sign in to comment.