Update padding
This commit is contained in:
J.P 2024-05-17 03:57:48 +02:00 committed by GitHub
commit 7d951ecefc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 13 additions and 13 deletions

View file

@ -1,5 +1,5 @@
<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">
<span>

View file

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

View file

@ -1,5 +1,5 @@
<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" />
<i class="i-fa6-solid:circle-info ml-2 mt-6 cursor-pointer" :title="$t('info.login_note')" />
</div>

View file

@ -1,6 +1,6 @@
<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">
<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"
><img
alt="logo"

View file

@ -6,7 +6,7 @@
<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>
<router-link class="link flex items-center gap-3" :to="playlist.uploaderUrl || '/'">
<img loading="lazy" :src="playlist.uploaderAvatar" class="h-12 rounded-full" />

View file

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

View file

@ -1,7 +1,7 @@
<template>
<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" />
<div class="flex">
<button v-if="playlists.length > 0" v-t="'actions.export_to_json'" class="btn" @click="exportPlaylists" />

View file

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

View file

@ -1,5 +1,5 @@
<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" />
<i class="i-fa6-solid:circle-info ml-2 mt-6 cursor-pointer" :title="$t('info.register_note')" />
</div>

View file

@ -1,5 +1,5 @@
<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">
<strong v-text="`${$t('actions.filter')}:`" />

View file

@ -1,5 +1,5 @@
<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 -->
<div class="flex flex-wrap justify-between">
<div class="flex gap-1">

View file

@ -1,5 +1,5 @@
<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 />

View file

@ -1,5 +1,5 @@
<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
ref="videoPlayer"
:video="video"