2
1
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2023-12-13 21:00:40 +01:00

Updated empty state design

refs #1698
This commit is contained in:
Djordje Vlaisavljevic 2022-07-27 10:11:13 +02:00
parent b351e75feb
commit db584379fa

View file

@ -2,7 +2,7 @@ import React from 'react';
const Empty = (props) => {
return (
<div className="pr-8 pt-2 pb-10 italic text-center font-sans leading-normal text-neutral-400 dark:text-[rgba(255,255,255,0.85)]">
<div className="px-2 pt-0 pb-10 font-sans text-center leading-normal text-neutral-400 dark:text-[rgba(255,255,255,0.85)]">
There are currently no comments.
</div>
);