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

18 lines
395 B
JavaScript

import styled from "styled-components";
export const ArtStyle = styled.div`
padding: 100px 20px;
height: 100vh;
display: flex;
gap:10px;
align-items: center;
justify-content: center;
flex-wrap: wrap;
overflow-y: auto;
background-image: url("/images/pxfuel-4.jpg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
`;