Added status and date field classes

This commit is contained in:
Elio Struyf
2023-04-07 10:26:43 +02:00
parent 58e6da0fcc
commit 994c7f6405
2 changed files with 2 additions and 2 deletions
@@ -30,7 +30,7 @@ export const DateField: React.FunctionComponent<IDateFieldProps> = ({
}
return (
<span className={`${className || ''} text-xs ${getColors(`text-vulcan-100 dark:text-whisper-900`, `text-[var(--vscode-editor-foreground)]`)}`}>
<span className={`date__field ${className || ''} text-xs ${getColors(`text-vulcan-100 dark:text-whisper-900`, `text-[var(--vscode-editor-foreground)]`)}`}>
{dateValue}
</span>
);
@@ -42,7 +42,7 @@ export const Status: React.FunctionComponent<IStatusProps> = ({
return (
<span
className={`
className={`draft__status
inline-block px-2 py-1 leading-none rounded-sm font-semibold uppercase tracking-wide text-xs
${getColors(`text-whisper-200 dark:text-vulcan-500`, ``)}
${draftValue ?