1 2 3 4 5 6 7 8 9 10 11 12
import styled from "styled-components"; export const Container = styled.div` width: 100%; max-width: 680px; display: flex; flex-direction: column; align-items: stretch; margin: 0 auto; `;
[PATCH repo_name]