Spaces:
Paused
Paused
File size: 434 Bytes
054d282 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer components {
.btn {
@apply bg-[#f8f9fa] rounded-md text-sm text-gray-800 hover:ring-1 hover:ring-gray-200 focus:outline-none active:ring-gray-300 hover:shadow-md w-36 h-10 transition-shadow;
}
.link {
@apply hover:underline cursor-pointer;
}
.header-icon{
@apply bg-transparent hover:bg-gray-200 p-2 text-4xl rounded-full cursor-pointer
}
}
|