Spaces:
Runtime error
Runtime error
File size: 536 Bytes
c687c71 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
<button
on:click
class="button-paint"
title="Prompt and Paint"
>
<span>About</span>
</button>
<style lang="postcss" scoped>
/* .button {
@apply disabled:opacity-50 dark:bg-white dark:text-black bg-black text-white rounded-2xl text-xs shadow-sm focus:outline-none focus:border-gray-400;
} */
.button-paint {
@apply text-xs md:text-sm font-mono bg-violet-100 text-violet-900 min-w-[25ch] flex justify-center items-center disabled:opacity-50 rounded-xl px-3 py-1 shadow-sm focus:outline-none focus:border-gray-400;
}
</style>
|