Update pedding

This commit is contained in:
J.P. 2024-05-17 03:51:43 +02:00
parent 13406f5abe
commit e89dbbbb20
13 changed files with 13 additions and 13 deletions

View file

@ -1,5 +1,5 @@
<template> <template>
<h1 v-t="'titles.feed'" class="my-4 text-center font-bold" /> <h1 v-t="'titles.feed'" class="my-4 text-center font-bold p-15" />
<div class="flex flex-col flex-wrap gap-2 children:(flex items-center gap-1) md:flex-row md:items-center"> <div class="flex flex-col flex-wrap gap-2 children:(flex items-center gap-1) md:flex-row md:items-center">
<span> <span>

View file

@ -1,5 +1,5 @@
<template> <template>
<div class="text-center"> <div class="text-center p-15">
<form> <form>
<div> <div>
<input ref="fileSelector" type="file" @change="fileChange" /> <input ref="fileSelector" type="file" @change="fileChange" />

View file

@ -1,5 +1,5 @@
<template> <template>
<div class="flex justify-center"> <div class="flex justify-center p-15">
<h1 v-t="'titles.login'" class="my-4 text-center font-bold" /> <h1 v-t="'titles.login'" class="my-4 text-center font-bold" />
<i class="i-fa6-solid:circle-info ml-2 mt-6 cursor-pointer" :title="$t('info.login_note')" /> <i class="i-fa6-solid:circle-info ml-2 mt-6 cursor-pointer" :title="$t('info.login_note')" />
</div> </div>

View file

@ -1,6 +1,6 @@
<template> <template>
<nav class="fixed top-0 left-0 w-full flex flex-wrap items-center justify-center px-2 pb-2.5 sm:px-4 bg-dark-4"> <nav class="fixed top-0 left-0 w-full flex flex-wrap items-center justify-center px-2 pb-2.5 sm:px-4 bg-dark-4">
<div class="flex flex-1 justify-start"> <div class="flex flex-1 justify-start p-2">
<router-link class="flex items-center text-3xl font-bold font-sans" :to="homePagePath" <router-link class="flex items-center text-3xl font-bold font-sans" :to="homePagePath"
><img ><img
alt="logo" alt="logo"

View file

@ -6,7 +6,7 @@
<CollapsableText v-if="playlist?.description" :text="playlist.description" /> <CollapsableText v-if="playlist?.description" :text="playlist.description" />
<div class="mt-1 flex justify-between <md:flex-col md:items-center"> <div class="mt-1 flex justify-between <md:flex-col md:items-center p-15">
<div> <div>
<router-link class="link flex items-center gap-3" :to="playlist.uploaderUrl || '/'"> <router-link class="link flex items-center gap-3" :to="playlist.uploaderUrl || '/'">
<img loading="lazy" :src="playlist.uploaderAvatar" class="h-12 rounded-full" /> <img loading="lazy" :src="playlist.uploaderAvatar" class="h-12 rounded-full" />

View file

@ -1,5 +1,5 @@
<template> <template>
<div ref="scrollable" class="h-screen-sm overflow-x-scroll"> <div ref="scrollable" class="h-screen-sm overflow-x-scroll p-15">
<VideoItem <VideoItem
v-for="(related, index) in playlist.relatedStreams" v-for="(related, index) in playlist.relatedStreams"
:key="related.url" :key="related.url"

View file

@ -1,7 +1,7 @@
<template> <template>
<h2 v-t="'titles.playlists'" class="my-4 font-bold" /> <h2 v-t="'titles.playlists'" class="my-4 font-bold" />
<div class="mb-3 flex justify-between"> <div class="mb-3 flex justify-between p-15">
<button v-t="'actions.create_playlist'" class="btn" @click="showCreatePlaylistModal = true" /> <button v-t="'actions.create_playlist'" class="btn" @click="showCreatePlaylistModal = true" />
<div class="flex"> <div class="flex">
<button v-if="playlists.length > 0" v-t="'actions.export_to_json'" class="btn" @click="exportPlaylists" /> <button v-if="playlists.length > 0" v-t="'actions.export_to_json'" class="btn" @click="exportPlaylists" />

View file

@ -1,5 +1,5 @@
<template> <template>
<div class="flex"> <div class="flex p-15">
<button @click="$router.go(-1) || $router.push('/')"> <button @click="$router.go(-1) || $router.push('/')">
<i class="i-fa6-solid:chevron-left" /><span v-t="'actions.back'" class="ml-1.5" /> <i class="i-fa6-solid:chevron-left" /><span v-t="'actions.back'" class="ml-1.5" />
</button> </button>

View file

@ -1,5 +1,5 @@
<template> <template>
<div class="flex justify-center"> <div class="flex justify-center p-15">
<h1 v-t="'titles.register'" class="my-4 text-center font-bold" /> <h1 v-t="'titles.register'" class="my-4 text-center font-bold" />
<i class="i-fa6-solid:circle-info ml-2 mt-6 cursor-pointer" :title="$t('info.register_note')" /> <i class="i-fa6-solid:circle-info ml-2 mt-6 cursor-pointer" :title="$t('info.register_note')" />
</div> </div>

View file

@ -1,5 +1,5 @@
<template> <template>
<h1 class="my-2 text-center" v-text="$route.query.search_query" /> <h1 class="my-2 text-center p-15" v-text="$route.query.search_query" />
<label for="ddlSearchFilters"> <label for="ddlSearchFilters">
<strong v-text="`${$t('actions.filter')}:`" /> <strong v-text="`${$t('actions.filter')}:`" />

View file

@ -1,5 +1,5 @@
<template> <template>
<h1 v-t="'titles.subscriptions'" class="my-4 text-center font-bold" /> <h1 v-t="'titles.subscriptions'" class="my-4 text-center font-bold p-15" />
<!-- import / export section --> <!-- import / export section -->
<div class="flex flex-wrap justify-between"> <div class="flex flex-wrap justify-between">
<div class="flex gap-1"> <div class="flex gap-1">

View file

@ -1,5 +1,5 @@
<template> <template>
<h1 v-t="'titles.trending'" class="my-4 text-center font-bold" /> <h1 v-t="'titles.trending'" class="my-4 text-center font-bold p-15" />
<hr /> <hr />

View file

@ -1,5 +1,5 @@
<template> <template>
<div v-if="video && isEmbed" class="absolute left-0 top-0 z-50 h-full w-full bg-black"> <div v-if="video && isEmbed" class="absolute left-0 z-50 h-full w-full bg-black">
<VideoPlayer <VideoPlayer
ref="videoPlayer" ref="videoPlayer"
:video="video" :video="video"