Skip to content

Commit

Permalink
fix: nitpicks
Browse files Browse the repository at this point in the history
  • Loading branch information
kemuru committed Dec 18, 2024
1 parent 56cc34a commit 1fef8b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion web/src/pages/Cases/CaseDetails/Timeline.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React, { useMemo } from "react";
import styled, { css } from "styled-components";

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

import { Box, Steps } from "@kleros/ui-components-library";

Expand All @@ -13,7 +14,6 @@ import { secondsToDayHourMinute } from "utils/date";
import { DisputeDetailsQuery } from "queries/useDisputeDetailsQuery";

import { StyledSkeleton } from "components/StyledSkeleton";
import { responsiveSize } from "~src/styles/responsiveSize";

const TimeLineContainer = styled(Box)`
width: 100%;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const Container = styled.div`
flex-direction: column;
background-color: ${({ theme }) => theme.lightBlue};
box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
padding: ${responsiveSize(16, 20)}${responsiveSize(8, 20)};
padding: ${responsiveSize(16, 20)} ${responsiveSize(8, 20)};
border-radius: 8px;
border: 1px solid ${({ theme }) => theme.mediumBlue};
justify-content: center;
Expand Down

0 comments on commit 1fef8b1

Please sign in to comment.