Spaces:
Runtime error
Runtime error
File size: 528 Bytes
27cf1bb c687c71 27cf1bb c687c71 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<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-blue-100 text-blue-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>
|