7 lines
287 B
TypeScript
7 lines
287 B
TypeScript
|
import { clsx } from 'clsx';
|
||
|
|
||
|
export const app = clsx('tw-flex tw-flex-auto tw-flex-wrap tw-items-center tw-justify-center');
|
||
|
export const container = clsx(
|
||
|
' tw-bg-neutral-100/40 tw-shadow-black/20 tw-backdrop-blur-sm tw-shadow-md tw-rounded-md tw-p-5 tw-m-5 tw-min-w-[20rem]',
|
||
|
);
|