mirror of
https://github.com/mentos1386/zdravko.git
synced 2024-11-26 09:17:55 +00:00
26 lines
405 B
CSS
26 lines
405 B
CSS
.feather {
|
|
width: 24px;
|
|
height: 24px;
|
|
stroke: currentColor;
|
|
stroke-width: 2;
|
|
stroke-linecap: round;
|
|
stroke-linejoin: round;
|
|
fill: none;
|
|
}
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
.btn {
|
|
@apply font-bold py-2 px-4 rounded;
|
|
}
|
|
.btn:hover {
|
|
@apply bg-gray-200 shadow-inner;
|
|
}
|
|
.btn-active {
|
|
@apply bg-gray-300 text-black shadow;
|
|
}
|
|
.btn-active:hover {
|
|
@apply shadow;
|
|
}
|