livebook/assets/css/components.css
Jonatan Kłosko 9d3a2ae264
Some cleanups (#25)
* Remove old js files

* Cleanup styles

* Update page title

* Unify elements rounding

* Fix indentation

* Rename component modules

* Add actions to routes for better helpers
2021-02-11 16:35:32 +01:00

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;
}