Skip to content

Commit

Permalink
Merge pull request #546 from openclimatefix/development
Browse files Browse the repository at this point in the history
fix ugly scrollbars bug
  • Loading branch information
braddf authored Nov 11, 2024
2 parents 55586ca + abc4ca3 commit 02b0d89
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -374,9 +374,9 @@ const DeltaChart: FC<DeltaChartProps> = ({ className, combinedData, combinedErro
</div>
)}
<div
className={`flex flex-col flex-grow-0 flex-shrink overflow-y-scroll ${
clickedGspId ? "h-[30%]" : "h-[40%]"
}`}
className={`flex flex-col flex-grow-0 flex-shrink${
hasGspPvInitialForSelectedTime ? " overflow-y-scroll" : ""
} ${clickedGspId ? "h-[30%]" : "h-[40%]"}`}
>
<DeltaBuckets bucketSelection={selectedBuckets} gspDeltas={gspDeltas} />
{!hasGspPvInitialForSelectedTime && (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -324,30 +324,30 @@ const SolarSiteChart: FC<{
</div>
)}

<div className="flex-1 flex flex-col overflow-y-scroll relative">
<div className="flex-1 flex flex-col relative">
<AggregatedDataTable
className={`absolute inset-0 overflow-y-scroll pb-16 ${
className={`absolute inset-0 overflow-y-scroll mb-12 ${
currentAggregation(AGGREGATION_LEVELS.NATIONAL) ? "z-10" : "z-0 opacity-0"
}`}
title={"National"}
tableData={Array.from(aggregatedSitesData.national.values())}
/>
<AggregatedDataTable
className={`absolute inset-0 overflow-y-scroll pb-16 ${
className={`absolute inset-0 overflow-y-scroll mb-12 ${
currentAggregation(AGGREGATION_LEVELS.REGION) ? "z-10" : "z-0 opacity-0"
}`}
title={"Region"}
tableData={Array.from(aggregatedSitesData.regions.values())}
/>
<AggregatedDataTable
className={`absolute inset-0 overflow-y-scroll pb-16 ${
className={`absolute inset-0 overflow-y-scroll mb-12 ${
currentAggregation(AGGREGATION_LEVELS.GSP) ? "z-10" : "z-0 opacity-0"
}`}
title={"GSP"}
tableData={Array.from(aggregatedSitesData.gsps.values())}
/>
<AggregatedDataTable
className={`absolute inset-0 overflow-y-scroll pb-16 ${
className={`absolute inset-0 overflow-y-scroll mb-12 ${
currentAggregation(AGGREGATION_LEVELS.SITE) ? "z-10" : "z-0 opacity-0"
}`}
title={"Sites"}
Expand Down
2 changes: 1 addition & 1 deletion apps/nowcasting-app/components/side-layout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const SideLayout: FC<SideLayoutProps> = ({
"focus:outline-none h-full text-white justify-between flex flex-col bg-mapbox-black-500 z-20 "
}
>
<div className={`min-h-full max-h-full flex flex-col overflow-y-scroll`}>{children}</div>
<div className={`min-h-full max-h-full flex flex-col`}>{children}</div>
</div>
<div className="absolute bottom-12 -right-4 h-10 z-20">
<ExpandButton isOpen={isOpen} onClick={() => setIsOpen((o) => !o)} />
Expand Down
25 changes: 25 additions & 0 deletions apps/nowcasting-app/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -114,3 +114,28 @@
overflow: hidden;
visibility: hidden;
}

/**************/
/* SCROLLBARS */
/**************/

/* Works on Firefox */
* {
scrollbar-width: thin;
scrollbar-color: theme(colors.mapbox-black.700) theme(colors.mapbox-black.600);
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
width: 12px;
}

*::-webkit-scrollbar-track {
background: theme(colors.mapbox-black.600);
}

*::-webkit-scrollbar-thumb {
background-color: theme(colors.mapbox-black.700);
border-radius: 20px;
border: 3px solid theme(colors.mapbox-black.600);
}

0 comments on commit 02b0d89

Please sign in to comment.