mirror of
https://github.com/yude-jp/yude.jp
synced 2024-12-23 12:40:11 +09:00
23 lines
628 B
CSS
23 lines
628 B
CSS
|
/* styles/index.css */
|
||
|
|
||
|
@tailwind base;
|
||
|
|
||
|
/* Start purging... */
|
||
|
@tailwind components;
|
||
|
/* Stop purging. */
|
||
|
|
||
|
.toggle-checkbox {
|
||
|
@apply absolute block w-6 h-6 dark:bg-white border-4 dark:border-gray-400 rounded-full appearance-none cursor-pointer focus:outline-none bg-gray-800 border-gray-100;
|
||
|
}
|
||
|
|
||
|
.toggle-checkbox:checked {
|
||
|
@apply right-0 border-gray-400;
|
||
|
}
|
||
|
|
||
|
.toggle-label {
|
||
|
@apply block h-6 align-middle overflow-hidden text-gray-100 bg-gray-100 rounded-full cursor-pointer dark:text-gray-400 dark:bg-gray-400 dark:border-gray-400 border-gray-100 border-2;
|
||
|
}
|
||
|
|
||
|
/* Start purging... */
|
||
|
@tailwind utilities;
|
||
|
/* Stop purging. */
|