mirror of
https://github.com/langgenius/dify-conversation.git
synced 2026-07-01 18:25:52 -04:00
23 lines
521 B
CSS
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;
|
|
} |