2024-02-02 09:05:04 -06:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
|
|
|
|
2024-02-12 17:20:50 -05:00
|
|
|
/* Reset rules, default styles applied to plain HTML */
|
|
|
|
@layer base {
|
2024-02-29 03:07:26 +05:30
|
|
|
details > summary::-webkit-details-marker {
|
|
|
|
@apply hidden;
|
|
|
|
}
|
2024-02-12 17:20:50 -05:00
|
|
|
}
|
|
|
|
|
2024-02-09 15:29:31 +00:00
|
|
|
@layer components {
|
|
|
|
.prose {
|
|
|
|
table {
|
|
|
|
@apply divide-y divide-gray-300;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr {
|
|
|
|
@apply divide-x divide-gray-100;
|
|
|
|
}
|
|
|
|
|
|
|
|
th {
|
|
|
|
@apply whitespace-nowrap px-2 py-3.5 text-left text-sm font-semibold text-gray-900;
|
|
|
|
}
|
|
|
|
|
|
|
|
tbody {
|
|
|
|
@apply divide-y divide-gray-200;
|
|
|
|
}
|
|
|
|
|
|
|
|
td {
|
|
|
|
@apply px-2 py-2 text-sm text-gray-500 whitespace-nowrap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-field {
|
|
|
|
@apply relative border bg-white rounded-xl shadow-sm;
|
|
|
|
@apply focus-within:shadow-none focus-within:border-gray-900 focus-within:ring-4 focus-within:ring-gray-100;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-field__label {
|
|
|
|
@apply p-3 pb-0 block text-sm font-medium opacity-50;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-field__input {
|
2024-03-18 11:21:00 -04:00
|
|
|
@apply p-3 w-full bg-transparent border-none opacity-50;
|
2024-02-09 15:29:31 +00:00
|
|
|
@apply focus:outline-none focus:ring-0 focus:opacity-100;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-field__submit {
|
|
|
|
@apply w-full p-3 text-center text-white bg-black rounded-lg hover:bg-gray-700;
|
|
|
|
}
|
2024-03-07 10:55:51 -05:00
|
|
|
|
|
|
|
input:checked + label + .toggle-switch-dot {
|
|
|
|
transform: translateX(100%);
|
|
|
|
}
|
2024-02-02 09:05:04 -06:00
|
|
|
}
|
2024-02-12 17:20:50 -05:00
|
|
|
|
|
|
|
/* Small, single purpose classes that should take precedence over other styles */
|
|
|
|
@layer utilities {
|
2024-03-14 15:30:36 +01:00
|
|
|
.scrollbar::-webkit-scrollbar {
|
|
|
|
width: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.scrollbar::-webkit-scrollbar-thumb {
|
|
|
|
background: #d6d6d6;
|
|
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.scrollbar::-webkit-scrollbar-thumb:hover {
|
|
|
|
background: #a6a6a6;
|
|
|
|
}
|
2024-02-12 17:20:50 -05:00
|
|
|
}
|