2025-02-12 11:22:30 -05:00
|
|
|
@import 'tailwindcss';
|
|
|
|
|
2025-02-13 11:31:07 -05:00
|
|
|
@import "./maybe-design-system.css";
|
2025-02-12 11:22:30 -05:00
|
|
|
|
2025-02-13 11:31:07 -05:00
|
|
|
@import "./geist-font.css";
|
|
|
|
@import "./geist-mono-font.css";
|
2025-02-12 11:22:30 -05:00
|
|
|
|
2025-02-13 11:31:07 -05:00
|
|
|
@plugin "@tailwindcss/typography";
|
|
|
|
@plugin "@tailwindcss/forms";
|
2025-02-12 11:22:30 -05:00
|
|
|
|
2025-02-21 11:57:59 -05:00
|
|
|
.combobox {
|
2025-02-13 11:31:07 -05:00
|
|
|
.hw-combobox__main__wrapper,
|
|
|
|
.hw-combobox__input {
|
|
|
|
@apply w-full;
|
2025-02-12 11:22:30 -05:00
|
|
|
}
|
|
|
|
|
2025-02-13 11:31:07 -05:00
|
|
|
.hw-combobox__main__wrapper {
|
|
|
|
@apply border-0 p-0 focus:border-0 ring-0 focus:ring-0 shadow-none focus:shadow-none focus-within:shadow-none;
|
2025-02-12 11:22:30 -05:00
|
|
|
}
|
|
|
|
|
2025-02-13 11:31:07 -05:00
|
|
|
.hw-combobox__listbox {
|
|
|
|
@apply absolute top-[160%] right-0 w-full bg-transparent rounded z-30;
|
2025-02-12 11:22:30 -05:00
|
|
|
}
|
|
|
|
|
2025-02-13 11:31:07 -05:00
|
|
|
.hw-combobox__label {
|
|
|
|
@apply block text-xs text-gray-500 peer-disabled:text-gray-400;
|
2025-02-12 11:22:30 -05:00
|
|
|
}
|
|
|
|
|
2025-02-13 11:31:07 -05:00
|
|
|
.hw_combobox__pagination__wrapper {
|
|
|
|
@apply h-px;
|
2025-02-12 11:22:30 -05:00
|
|
|
|
2025-02-13 11:31:07 -05:00
|
|
|
&:only-child {
|
|
|
|
@apply bg-transparent;
|
|
|
|
}
|
2025-02-12 11:22:30 -05:00
|
|
|
}
|
|
|
|
|
2025-02-13 11:31:07 -05:00
|
|
|
--hw-border-color: rgba(0, 0, 0, 0.2);
|
|
|
|
--hw-handle-width: 20px;
|
|
|
|
--hw-handle-height: 20px;
|
|
|
|
--hw-handle-offset-right: 0px;
|
2025-02-12 11:22:30 -05:00
|
|
|
}
|
|
|
|
|
2025-02-21 11:57:59 -05:00
|
|
|
/* Typography */
|
|
|
|
.prose {
|
|
|
|
@apply max-w-none;
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
@apply text-xl font-medium;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
@apply text-lg font-medium;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
@apply m-0;
|
|
|
|
}
|
|
|
|
|
|
|
|
details {
|
|
|
|
@apply mb-4 rounded-xl mt-3.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
summary {
|
|
|
|
@apply flex items-center gap-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
video {
|
|
|
|
@apply m-0 rounded-b-xl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-02-12 11:22:30 -05:00
|
|
|
.prose--github-release-notes {
|
|
|
|
.octicon {
|
|
|
|
@apply inline-block overflow-visible align-text-bottom fill-current;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-caret {
|
|
|
|
@apply content-none border-4 border-b-0 border-transparent border-t-gray-500 size-0 inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-mention {
|
|
|
|
@apply font-bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-02-13 11:31:07 -05:00
|
|
|
/* Custom scrollbar implementation for Windows browsers */
|
|
|
|
.windows {
|
|
|
|
::-webkit-scrollbar {
|
2025-02-12 11:22:30 -05:00
|
|
|
width: 4px;
|
|
|
|
}
|
|
|
|
|
2025-02-13 11:31:07 -05:00
|
|
|
::-webkit-scrollbar-thumb {
|
2025-02-12 11:22:30 -05:00
|
|
|
background: #d6d6d6;
|
|
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
|
2025-02-13 11:31:07 -05:00
|
|
|
::-webkit-scrollbar-thumb:hover {
|
2025-02-12 11:22:30 -05:00
|
|
|
background: #a6a6a6;
|
2025-02-13 11:31:07 -05:00
|
|
|
}
|
2025-02-12 11:22:30 -05:00
|
|
|
}
|
|
|
|
|
2025-02-13 11:31:07 -05:00
|
|
|
.scrollbar {
|
|
|
|
&::-webkit-scrollbar {
|
2025-02-12 11:22:30 -05:00
|
|
|
width: 4px;
|
|
|
|
}
|
|
|
|
|
2025-02-13 11:31:07 -05:00
|
|
|
&::-webkit-scrollbar-thumb {
|
2025-02-12 11:22:30 -05:00
|
|
|
background: #d6d6d6;
|
|
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
|
2025-02-13 11:31:07 -05:00
|
|
|
&::-webkit-scrollbar-thumb:hover {
|
2025-02-12 11:22:30 -05:00
|
|
|
background: #a6a6a6;
|
2025-02-13 11:31:07 -05:00
|
|
|
}
|
2025-02-12 11:22:30 -05:00
|
|
|
}
|