Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
3 changes: 1 addition & 2 deletions web/src/components/EvidenceCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ const StyledReactMarkdown = styled(ReactMarkdown)`

const BottomShade = styled.div`
background-color: ${({ theme }) => theme.lightBlue};
border-top: 1px solid ${({ theme }) => theme.stroke};
display: flex;
flex-wrap: wrap;
align-items: center;
Expand All @@ -92,7 +91,7 @@ const BottomShade = styled.div`

${landscapeStyle(
() => css`
padding: 16px 24px;
padding: 12px 24px;
`
)}
`;
Expand Down
2 changes: 1 addition & 1 deletion web/src/pages/Cases/CaseDetails/Evidence/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const Container = styled.div`
flex-direction: column;
gap: 16px;
align-items: center;
padding: 16px;
padding: 20px 16px 16px;

${landscapeStyle(
() => css`
Expand Down
2 changes: 1 addition & 1 deletion web/src/pages/Cases/CaseDetails/Overview/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const Container = styled.div`
display: flex;
flex-direction: column;
gap: 16px;
padding: 16px;
padding: 20px 16px 16px;

${landscapeStyle(
() => css`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ import { isUndefined } from "utils/index";
import { shortenAddress } from "utils/shortenAddress";

import { landscapeStyle } from "styles/landscapeStyle";
import { responsiveSize } from "styles/responsiveSize";

const TitleContainer = styled.div`
display: flex;
flex-direction: column;
align-items: start;
gap: ${responsiveSize(8, 12)};
gap: 11px;
flex-wrap: wrap;
${landscapeStyle(
() => css`
flex-direction: row;
align-items: center;
gap: 12px;
`
)}
`;
Expand Down
2 changes: 1 addition & 1 deletion web/src/pages/Cases/CaseDetails/Voting/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import Classic from "./Classic";
import VotingHistory from "./VotingHistory";

const Container = styled.div`
padding: 16px;
padding: 20px 16px 16px;

${landscapeStyle(
() => css`
Expand Down
1 change: 0 additions & 1 deletion web/src/pages/Home/CourtOverview/BarChart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ const formatter = new Intl.NumberFormat("en", { notation: "compact" });

const BarContainer = styled.div`
height: 220px;
margin-top: 16px;
`;

ChartJS.register(BarElement);
Expand Down
1 change: 1 addition & 0 deletions web/src/pages/Home/CourtOverview/Chart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ const Container = styled.div`
margin-bottom: ${responsiveSize(16, 32)};
display: flex;
flex-direction: column;
gap: 16px;
`;

const StyledDropdown = styled(DropdownSelect)`
Expand Down
1 change: 0 additions & 1 deletion web/src/pages/Home/CourtOverview/TimeSeriesChart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import "chartjs-adapter-moment";

const LineContainer = styled.div`
height: 220px;
margin-top: 16px;
`;

ChartJS.register(CategoryScale, LinearScale, PointElement, LineElement, TimeScale, Tooltip);
Expand Down
1 change: 1 addition & 0 deletions web/src/pages/Home/TopJurors/Header/MobileHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ const Container = styled.div`
border-top-right-radius: 3px;
border-bottom: none;
flex-wrap: wrap;

${landscapeStyle(
() => css`
display: none;
Expand Down
Loading