Porównaj commity

...

4 Commity

Autor SHA1 Wiadomość Data
Soapbox Bot 04ee8dbbf1 Merge branch 'renovate/docker-25.x' into 'main'
Update docker Docker tag to v25.0.5

See merge request soapbox-pub/soapbox!2946
2024-04-18 23:06:30 +00:00
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
Soapbox Bot 59c51b9b46 Update docker Docker tag to v25.0.5 2024-03-20 03:07:03 +00:00
2 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -111,9 +111,9 @@ pages:
docker:
stage: deploy
image: docker:25.0.3
image: docker:25.0.5
services:
- docker:25.0.3-dind
- docker:25.0.5-dind
tags:
- dind
# https://medium.com/devops-with-valentine/how-to-build-a-docker-image-and-push-it-to-the-gitlab-container-registry-from-a-gitlab-ci-pipeline-acac0d1f26df

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>
);