Forráskód Böngészése

fix(thumbnail component): image width to exceed edge

RoyLiu 4 éve
szülő
commit
138e1ee712
1 módosított fájl, 4 hozzáadás és 2 törlés
  1. 4 2
      components/Thumbnail/styled.ts

+ 4 - 2
components/Thumbnail/styled.ts

@@ -5,7 +5,7 @@ export const Wrapper = styled.div`
   justify-content: center;
   align-items: center;
   margin: 20px 0;
-  width: 180px;
+  width: 230px;
   height: 180px;
 `;
 
@@ -15,8 +15,10 @@ export const PageNum = styled.div`
 
 export const Img = styled.img`
   border: 1px solid ${({ theme }) => theme.colors.black38};
+  max-width: 200px;
+  max-height: 180px;
   width: auto;
-  height: 100%;
+  height: auto;
   box-sizing: border-box;
   cursor: pointer;
 `;