마지막 child를 제외하고 margin-right 값 주기
ul li :not(:last-child) { margin-right: 5px; }
const Group = styled.ul` & > li:not(:last-child) { margin-right: 5px; } `
Last updated 3 years ago