From 27218d68416a514c99c09680c3a435f0c28652f8 Mon Sep 17 00:00:00 2001 From: vikingowl Date: Thu, 25 Jan 2024 22:54:44 +0100 Subject: [PATCH] fixed packages for mobile --- frontend/src/components/Packages.vue | 51 ++++++++++++++++------------ 1 file changed, 30 insertions(+), 21 deletions(-) diff --git a/frontend/src/components/Packages.vue b/frontend/src/components/Packages.vue index 6df81c9..3a81d63 100644 --- a/frontend/src/components/Packages.vue +++ b/frontend/src/components/Packages.vue @@ -2,16 +2,17 @@
Packages
- - + + + + + + - + - + - - + + - + Repository Pkgbase Status Reason - + LTO + + Link time optimization; +
+ Does not guarantee that package is actually built with LTO +
+ + + DS + + Debug-symbols available via debuginfod + - DS Archlinux Version ALHP Version Info @@ -78,7 +84,7 @@ v-for="(pkg, index) in packages" :key="index" :style="`background-color: ${getStatus(pkg.status)};`"> - + {{ pkg.repo.split('-')[0] }} - {{ pkg.pkgbase }} + {{ pkg.pkgbase }} {{ pkg.status.toLocaleUpperCase() }} {{ pkg.skip_reason || '' }} @@ -107,7 +113,7 @@ class="text-decoration-none" style=" color: darkgrey; - transform: translateY(-3px) translateX(-15px); + transform: translateY(-3px) translateX(-22px); max-width: 15px; " target="_blank"> @@ -152,6 +158,9 @@ import { onMounted, ref, UnwrapRef, watch } from 'vue' import { type Package } from '@/types/Package' import { type Packages } from '@/types/Packages' +import { useDisplay } from 'vuetify' + +const { mobile } = useDisplay() const inputPkgBase = ref('') const selectRepo = ref({ title: 'Repository (any)', value: 'any' })