Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const CurveHistogram: FC<Props> = ({
fill: "light" + color,
},
}}
barRatio={1.7}
barRatio={1.2}
x={(d) => d.x + 0.5}
/>
<VictoryAxis
Expand Down
2 changes: 1 addition & 1 deletion front_end/src/app/(thecurve)/components/curve_question.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const CurveQuestion: FC<Props> = ({
{isExpanded && (
<>
<div
className="absolute left-0 top-[100%-50px] z-50 w-full overflow-y-scroll bg-blue-800 p-5 py-0 lg:!max-h-[510px]"
className="absolute left-0 top-[100%-50px] z-[100] w-full overflow-y-scroll bg-blue-800 p-5 py-0 lg:!max-h-[510px]"
style={{ maxHeight: `${maxDetailsHeight}px` }}
>
<CurveQuestionDetails
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const CurveQuestionDetails: FC<Props> = ({
const collapseLabel = _collapseLabel ?? t("collapse");

return (
<div className={classNames("flex flex-col")}>
<div className="flex flex-col">
{!!question.group_of_questions?.resolution_criteria && (
<>
<h3 className="m-0 mt-3 text-lg font-normal leading-5 text-blue-500 dark:text-blue-500">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,5 +103,5 @@
}

.thecurve blockquote {
@apply my-4 border-s-4 border-gray-300 bg-gray-100 p-4 text-blue-300 dark:border-gray-300-dark dark:bg-gray-200-dark dark:text-blue-300;
@apply my-4 border-s-4 border-gray-300-dark bg-gray-200-dark p-4 text-blue-300;
}