mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-17 13:27:50 +08:00
9d3a2ae264
* Remove old js files * Cleanup styles * Update page title * Unify elements rounding * Fix indentation * Rename component modules * Add actions to routes for better helpers
39 lines
720 B
CSS
39 lines
720 B
CSS
/* Buttons */
|
|
|
|
.button-base {
|
|
@apply px-4 py-2 bg-white rounded-md border border-gray-300 font-medium text-gray-700 hover:bg-gray-50;
|
|
}
|
|
|
|
.button-sm {
|
|
@apply px-3 py-1;
|
|
}
|
|
|
|
.button-danger {
|
|
@apply border border-red-300 text-red-500 hover:bg-red-50;
|
|
}
|
|
|
|
.button-primary {
|
|
@apply border-0 bg-purple-400 text-white hover:bg-purple-500;
|
|
}
|
|
|
|
/* Form fields */
|
|
|
|
.input-base {
|
|
@apply w-full px-3 py-3 bg-white rounded-md placeholder-gray-400 text-gray-700;
|
|
}
|
|
|
|
/* Custom scrollbars */
|
|
|
|
.tiny-scrollbar::-webkit-scrollbar {
|
|
width: 0.4rem;
|
|
height: 0.4rem;
|
|
}
|
|
|
|
.tiny-scrollbar::-webkit-scrollbar-thumb {
|
|
border-radius: 0.25rem;
|
|
@apply bg-gray-400;
|
|
}
|
|
|
|
.tiny-scrollbar::-webkit-scrollbar-track {
|
|
@apply bg-gray-100;
|
|
}
|