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 @@ -7,7 +7,7 @@ const VehicleList = ({ driver }: { driver: DriverWithVandC }) => {
className="flex flex-col items-center justify-center w-full"
data-testid="vehichlelist"
>
<div className="w-full md:h-[25rem] h-full bg-gray-400 rounded-md bg-clip-padding backdrop-filter backdrop-blur-sm bg-opacity-10 overflow-y-auto scrollbar">
<div className="w-full h-[25rem] bg-gray-400 rounded-md bg-clip-padding backdrop-filter backdrop-blur-sm bg-opacity-10 overflow-y-auto scrollbar">
{
driver.cars?.map((car) => (
<CarListCard key={car.id || "placeholder-license"} car={car} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import ViolationCard from "../ViolationCard";
const ViolationList = ({ violations }: { violations: Violation[] }) => {
return (
<div className="flex flex-col items-center justify-center w-full">
<div className="w-full md:h-[25rem] h-full bg-gray-400 bg-clip-padding rounded-md backdrop-filter backdrop-blur-sm bg-opacity-10 overflow-y-auto scrollbar">
<div className="w-full h-[25rem] bg-gray-400 bg-clip-padding rounded-md backdrop-filter backdrop-blur-sm bg-opacity-10 overflow-y-auto scrollbar">
{violations.map((violation) => (
<ViolationCard
key={violation.id}
Expand Down
Loading