30 lines
494 B
CSS
30 lines
494 B
CSS
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap');
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
::-webkit-scrollbar {
|
|
width: 7px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track{
|
|
background: #2D3748;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb{
|
|
background: #CBD5E0;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover{
|
|
background: #718096;
|
|
}
|
|
|
|
.btn {
|
|
@apply py-2 px-4 font-semibold rounded-lg shadow-md;
|
|
}
|
|
.btn-green {
|
|
@apply text-white bg-green-500 hover:bg-green-700;
|
|
}
|
|
|