Skip to content

Commit

Permalink
fix: updated container-margin to only be bottom
Browse files Browse the repository at this point in the history
  • Loading branch information
malmen237 committed Apr 26, 2024
1 parent 22f92c5 commit 229f770
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/components/landing-page/productions-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,14 @@ import { LocalError } from "../error.tsx";

const ProductionListContainer = styled.div`
display: flex;
padding: 2rem 0 2rem 2rem;
padding: 0 0 2rem 2rem;
flex-wrap: wrap;
`;

const HeaderContainer = styled(DisplayContainer)`
padding: 0 2rem 0 2rem;
`;

const ProductionItem = styled.div`
flex: 1 0 calc(25% - 2rem);
min-width: 20rem;
Expand Down Expand Up @@ -106,9 +110,9 @@ export const ProductionsList = () => {
className={showRefreshing ? "active" : "in-active"}
text="refreshing"
/>
<DisplayContainer>
<HeaderContainer>
<DisplayContainerHeader>Production List</DisplayContainerHeader>
</DisplayContainer>
</HeaderContainer>
<ProductionListContainer>
{error && <LocalError error={error} />}
{!error &&
Expand Down

0 comments on commit 229f770

Please sign in to comment.