Files
dify-conversation/components/button/style.module.css
T
2023-06-09 20:17:04 +08:00

23 lines
521 B
CSS

.button {
@apply inline-flex text-xs py-2 px-4 rounded-lg align-middle;
}
.button.blue {
@apply text-white bg-blue-700 hover:bg-blue-800;
}
.button.gray {
@apply text-gray-500 bg-gray-200 hover:bg-gray-300;
}
.button.red {
@apply text-white bg-red-700 hover:bg-red-800;
}
.button.white {
@apply text-gray-500 bg-transparent outline outline-gray-300 hover:bg-gray-300;
}
.button.transparent {
@apply border-solid border border-gray-200 text-gray-500 hover:bg-white hover:shadow-sm hover:border-gray-300;
}