tailwind package

This commit is contained in:
Max Peintner
2023-04-14 13:35:27 +02:00
parent b275a0de62
commit 2c04b79f1b
27 changed files with 264 additions and 221 deletions

View File

Before

Width:  |  Height:  |  Size: 968 B

After

Width:  |  Height:  |  Size: 968 B

View File

Before

Width:  |  Height:  |  Size: 968 B

After

Width:  |  Height:  |  Size: 968 B

View File

Before

Width:  |  Height:  |  Size: 856 B

After

Width:  |  Height:  |  Size: 856 B

View File

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

Before

Width:  |  Height:  |  Size: 343 B

After

Width:  |  Height:  |  Size: 343 B

View File

Before

Width:  |  Height:  |  Size: 9.6 KiB

After

Width:  |  Height:  |  Size: 9.6 KiB

View File

@@ -6,15 +6,15 @@ export interface SignInWithGoogleProps {
export function SignInWithGoogle(props: SignInWithGoogleProps) {
return (
<div className="flex flex-row items-center bg-white text-gray-500 dark:bg-transparent dark:text-white rounded-md p-4 text-sm">
<div className="ui-flex ui-flex-row ui-items-center ui-bg-white ui-text-black dark:ui-bg-transparent dark:ui-text-white rounded-md p-4 text-sm">
<img
className="h-8 w-8"
src="idp/google.png"
src="./assets/google.png"
alt="google"
height={24}
width={24}
/>
Sign in with Google
<span className="ui-ml-4">Sign in with Google</span>
</div>
);
}

View File

@@ -1,5 +1,6 @@
import * as React from "react";
import "./styles.css";
export {
SignInWithGoogle,
type SignInWithGoogleProps,
} from "./SignInWithGoogle";
} from "./components/SignInWithGoogle";

View File

@@ -0,0 +1,7 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
.hello {
color: yellow;
}