Skip to content

Commit

Permalink
fix: fix style regression of tailwindCSS class
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroAkbal committed Aug 3, 2020
1 parent bbc72f5 commit 83ca1f6
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions assets/css/general/general.css
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ a:focus,
@apply border-primary;
}

.space-y-4-fixer > :first-child {
@apply mt-4;
}

/* ---------------- Transitions and animations ---------------- */

/* Page Transition */
Expand Down
2 changes: 1 addition & 1 deletion pages/faq.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<main class="mt-4 space-y-4">
<main class="space-y-4 space-y-4-fixer">
<ContentContainer
:separator="true"
title="General"
Expand Down
2 changes: 1 addition & 1 deletion pages/index.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<main class="mt-4 space-y-4">
<main class="space-y-4 space-y-4-fixer">
<!-- Menu -->
<div class="flex flex-row items-center justify-between">
<DomainSelector />
Expand Down
2 changes: 1 addition & 1 deletion pages/legal.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<main class="mt-4 space-y-4">
<main class="space-y-4 space-y-4-fixer">
<!-- Separator -->
<ContentContainer :separator="true" title="Disclaimer" />

Expand Down
2 changes: 1 addition & 1 deletion pages/premium/booru.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<main class="flex flex-col justify-around h-screen mt-4 space-y-4">
<main class="flex flex-col justify-around h-screen space-y-4 space-y-4-fixer">
<div>
<!-- Booru list -->
<div class="px-2 py-1 overflow-x-scroll material-container">
Expand Down
2 changes: 1 addition & 1 deletion pages/premium/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<template>
<main>
<template v-if="hasValidLicenseKey">
<div class="flex flex-col h-screen mt-4 space-y-4">
<div class="flex flex-col h-screen space-y-4 space-y-4-fixer">
<PremiumDashboard />

<!-- Custom Booru -->
Expand Down
2 changes: 1 addition & 1 deletion pages/usage.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<main class="mt-4 space-y-4">
<main class="space-y-4 space-y-4-fixer">
<!-- General Usage -->

<ContentContainer
Expand Down

0 comments on commit 83ca1f6

Please sign in to comment.