Merge pull request #1262 from Bnyro/master

improve mobile layout of the subscriptions page
This commit is contained in:
Kavin 2022-07-31 13:28:35 +05:30 committed by GitHub
commit 6bf45d198d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 11 deletions

View file

@ -106,7 +106,7 @@ b {
}
.btn {
@apply py-2 px-4 rounded cursor-pointer;
@apply h-full py-2 <md:(px-2) md:(px-4) rounded cursor-pointer;
}
.reset {
@ -132,10 +132,6 @@ b {
@apply h-8;
}
.btn {
@apply h-full;
}
.checkbox {
@apply h-4 w-4;
}

View file

@ -1,9 +1,9 @@
<template>
<h1 class="font-bold text-center" v-t="'titles.subscriptions'" />
<h1 class="font-bold text-center my-4" v-t="'titles.subscriptions'" />
<div v-if="authenticated" class="flex justify-between w-full">
<div>
<button class="btn mr-0.5">
<div class="flex">
<button class="btn mx-1">
<router-link to="/import" v-t="'actions.import_from_json'" />
</button>
<button class="btn" @click="exportHandler" v-t="'actions.export_to_json'" />
@ -15,10 +15,10 @@
<div class="grid">
<div class="mb-3" v-for="subscription in subscriptions" :key="subscription.url">
<div class="flex justify-center place-items-center">
<div class="w-full grid grid-cols-3">
<router-link :to="subscription.url" class="col-start-2 block flex text-center font-bold text-4xl">
<div class="w-full flex justify-between items-center">
<router-link :to="subscription.url" class="flex text-center font-bold text-4xl">
<img :src="subscription.avatar" class="rounded-full h-[fit-content]" width="48" height="48" />
<span v-text="subscription.name" />
<span class="mx-2" v-text="subscription.name" />
</router-link>
<button
class="btn !w-min"