File tree Expand file tree Collapse file tree
components/src/containers/CaseCard Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,7 +8,10 @@ const CaseCardContainer = styled.div`
88 border-radius: 10px;
99 height: 391px;
1010 width: 272px;
11- filter: drop-shadow(2px 2px 24px rgba(0, 0, 0, 0.08));
11+ filter: drop-shadow(15px 15px 10px rgba(0, 0, 0, 0.2));
12+ overflow: visible;
13+ margin-right: 30px;
14+ margin-bottom: 30px;
1215 padding: 60px 20px 0;
1316 display: flex;
1417 flex-direction: column;
Original file line number Diff line number Diff line change @@ -81,8 +81,7 @@ const casesOverviewContainerResponsiveCSS = () => {
8181 "" ,
8282 breakpointNameToPx ( {
8383 xs : "1fr" ,
84- lg : "1fr 650px" ,
85- xl : "1fr 650px" ,
84+ lg : "1fr 680px" ,
8685 } ) ) ;
8786 const paddingTop = responsiveValuesCSS (
8887 "padding-top" ,
@@ -101,7 +100,15 @@ const casesOverviewContainerResponsiveCSS = () => {
101100 xl : 80
102101 } )
103102 ) ;
104- return gridColumns + paddingTop + columnGap ;
103+ const justifyItems = responsiveValuesCSS (
104+ "justify-items" ,
105+ "" ,
106+ breakpointNameToPx ( {
107+ xs : "center" ,
108+ lg : "flex-start"
109+ } )
110+ ) ;
111+ return gridColumns + paddingTop + columnGap + justifyItems ;
105112} ;
106113const CasesOverviewContainer = styled . div `
107114 ${ casesOverviewContainerResponsiveCSS } ;
@@ -143,10 +150,9 @@ const CasesOverviewRightColumn = styled.div`
143150 ${ casesOverviewRightColumnResponsiveCSS } ;
144151 display: grid;
145152 justify-items: center;
146- grid-column-gap: 20px;
147- grid-row-gap: 20px;
148153 height: 800px;
149154 overflow: scroll;
155+
150156` ;
151157
152158type Case = {
You can’t perform that action at this time.
0 commit comments