Porównaj commity

...

2 Commity

Autor SHA1 Wiadomość Data
marcin mikołajczak b8093ace04 Merge branch 'black-mode' into 'main'
Black theme: set counter ring color

See merge request soapbox-pub/soapbox!2998
2024-04-18 22:10:54 +00:00
marcin mikołajczak 1b73a1fbc3 Black theme: set counter ring color
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
2024-04-18 23:51:04 +02: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 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 black:ring-black dark:ring-gray-800'>
{shortNumberFormat(count, countMax)}
</span>
);