Fixing hiring status color

This commit is contained in:
2021-04-18 13:27:16 +02:00
parent f3738db7e4
commit ee57b05c0c
3 changed files with 8 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
<template>
<section v-if="posts" class="w-full flex items-center justify-center my-20">
<section class="w-full flex items-center justify-center my-20">
<div class="flex flex-col items-center text-center">
<div class="flex flex-col items-center">
<h2 class="font-bold text-3xl">
@@ -10,7 +10,7 @@
</p>
</div>
<div class="my-8 lg:flex w-full lg:space-x-6">
<div v-for="post in posts">
<div v-if="posts" v-for="post in posts">
<Post
:title="post.title"
:cover="post.cover"

View File

@@ -1,5 +1,5 @@
<template>
<section v-if="projects" class="w-full flex items-center justify-center my-20">
<section class="w-full flex items-center justify-center my-20">
<div class="flex flex-col items-center text-center">
<div class="flex flex-col items-center">
<h2 class="font-bold text-3xl">
@@ -10,7 +10,7 @@
</p>
</div>
<div class="my-8 lg:flex w-full lg:space-x-8">
<div v-for="project in projects">
<div v-if="projects" v-for="project in projects">
<Project
:title="project.title"
:cover="project.cover"