10 lines
227 B
CSS
10 lines
227 B
CSS
|
.container {
|
||
|
@apply dark: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];
|
||
|
}
|
||
|
|
||
|
html.dark {
|
||
|
.container {
|
||
|
@apply tw-shadow-slate-100/30;
|
||
|
}
|
||
|
}
|