bravo68web-portfolio-nextjs/components/artCard.style.jsx

30 lines
555 B
JavaScript

import styled from "styled-components";
export default styled.div`
padding: 2%;
width: 230px;
height: 320px;
box-sizing: border-box;
background-color: #8609d4;
border-radius: 5px;
margin: 5px;
.type {
color: var(--color1);
}
.card-logo {
display: flex;
/* width: 100%; */
justify-content: center;
align-items: center;
background-color: #fff;
border-radius: 10px;
img {
width: 100%;
object-fit: cover;
/* object-position: 0px -10px; */
}
/* margin: 5px 5px 0px 0px; */
}
`;