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

18 lines
395 B
React
Raw Normal View History

2022-03-31 18:52:29 +00:00
import styled from "styled-components";
2022-04-02 19:52:51 +00:00
export const ArtStyle = styled.div`
2023-06-12 08:03:13 +00:00
padding: 100px 20px;
height: 100vh;
display: flex;
2023-07-01 20:31:02 +00:00
gap:10px;
2023-06-12 08:03:13 +00:00
align-items: center;
justify-content: center;
flex-wrap: wrap;
overflow-y: auto;
2023-06-13 05:07:09 +00:00
background-image: url("/images/pxfuel-4.jpg");
2023-06-12 08:03:13 +00:00
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
2022-04-02 19:52:51 +00:00
`;