add csv label

This commit is contained in:
Jing Hua 2023-04-02 19:56:00 +08:00
parent 9956d254f4
commit dfd8cfc32a
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@ const ExportPrompt = () => {
return (
<div className='mt-4'>
<div className='block mb-2 text-sm font-medium text-gray-900 dark:text-gray-300'>
{t('export')}
{t('export')} (CSV)
</div>
<button
className='btn btn-small btn-primary'

View file

@ -53,7 +53,7 @@ const ImportPrompt = () => {
return (
<div>
<label className='block mb-2 text-sm font-medium text-gray-900 dark:text-gray-300'>
{t('import')}
{t('import')} (CSV)
</label>
<input
className='w-full text-sm file:p-2 text-gray-800 file:text-gray-700 dark:text-gray-300 dark:file:text-gray-200 rounded-md cursor-pointer focus:outline-none bg-gray-50 file:bg-gray-100 dark:bg-gray-800 dark:file:bg-gray-700 file:border-0 border border-gray-300 dark:border-gray-600 placeholder-gray-900 dark:placeholder-gray-300 file:cursor-pointer'