diff --git a/src/app.css b/src/app.css index c1bae2b..91088bd 100644 --- a/src/app.css +++ b/src/app.css @@ -19,6 +19,26 @@ @apply rounded-lg border-gray-500 bg-white/90 px-4 shadow-lg dark:bg-black dark:text-white dark:shadow-lg dark:shadow-gray-200/10; } + .tab-container { + @apply flex border-b border-gray-300; + } + + .tab-container__item { + @apply -mb-px px-4 py-2 font-semibold text-gray-500; + } + + .tab-container__item--active { + @apply border-b-2 border-green-500 text-green-500; + } + + .button { + @apply rounded-md bg-white px-3 py-2 text-sm font-semibold text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 hover:bg-gray-50; + } + + .button--primary { + @apply rounded-md bg-green-600 px-3 py-2 text-sm font-semibold text-white shadow-sm hover:bg-green-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-green-600; + } + .rtl { @apply flex-row-reverse text-right; direction: rtl; diff --git a/src/components/StandalonePage.svelte b/src/components/StandalonePage.svelte new file mode 100644 index 0000000..2cd0932 --- /dev/null +++ b/src/components/StandalonePage.svelte @@ -0,0 +1,3 @@ +
-
-