Updated some packages and tina
Some checks failed
A gitea test / Random test (pull_request) Has been cancelled

This commit was merged in pull request #9.
This commit is contained in:
2023-09-05 00:52:21 +02:00
parent 5b9b42f788
commit 835d8ef596
5 changed files with 2730 additions and 3890 deletions

View File

@@ -56,11 +56,11 @@ const Image = (props: ImageProps) => {
const getPositionTypeClass = (): string | undefined => {
switch (props.position) {
case imagePosition.left:
return "float-left";
return "float-left mr-2";
case imagePosition.middle:
return "flex justify-center";
case imagePosition.right:
return "float-right";
return "float-right ml-2";
default:
return undefined;
}