2024-02-10 11:59:58 +00:00
|
|
|
.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;
|
|
|
|
}
|
2024-02-12 10:22:14 +00:00
|
|
|
|
|
|
|
.sidebar {
|
|
|
|
@apply w-48 h-fit text-sm font-medium text-gray-900 bg-white border border-gray-200 rounded-lg;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar li:first-child a {
|
|
|
|
@apply rounded-t-lg;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar li:last-child a {
|
|
|
|
@apply rounded-b-lg;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar a {
|
|
|
|
@apply w-full block px-4 py-2 border-b border-gray-200 hover:bg-gray-100 hover:text-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-700 focus:text-blue-700;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar a.active {
|
|
|
|
@apply bg-blue-700 text-white;
|
|
|
|
}
|
2024-02-12 13:20:38 +00:00
|
|
|
|
|
|
|
.healthchecks {
|
|
|
|
@apply grid justify-items-stretch justify-stretch items-center mt-20 bg-gray-200 shadow-inner p-5 rounded-lg;
|
|
|
|
}
|
|
|
|
|
|
|
|
.healthchecks > div:not(:last-child) {
|
|
|
|
@apply mb-3;
|
|
|
|
}
|