Porównaj commity

..

1 Commity

Autor SHA1 Wiadomość Data
marcin mikołajczak d98d10efb9 Merge branch 'deduplicate-timelines' into 'main'
Draft: Group notifications/reposts fetched from the same page

See merge request soapbox-pub/soapbox!2909
2024-04-17 03:56:28 +00:00
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -12,7 +12,7 @@ interface ICounter {
/** A simple counter for notifications, etc. */
const Counter: React.FC<ICounter> = ({ count, countMax }) => {
return (
<span className='flex h-5 min-w-[20px] max-w-[26px] items-center justify-center rounded-full bg-secondary-500 text-xs font-medium text-white ring-2 ring-white black:ring-black dark:ring-gray-800'>
<span className='flex h-5 min-w-[20px] max-w-[26px] items-center justify-center rounded-full bg-secondary-500 text-xs font-medium text-white ring-2 ring-white dark:ring-gray-800'>
{shortNumberFormat(count, countMax)}
</span>
);