mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 14:43:24 +00:00
14 lines
317 B
TypeScript
14 lines
317 B
TypeScript
import styled from '@emotion/styled';
|
|
import UnstyledList from '~/components/common/unstyled/unstyled_list';
|
|
|
|
const AboutList = styled(UnstyledList)({
|
|
margin: '4em 0 !important',
|
|
display: 'flex',
|
|
gap: '2em',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
flexWrap: 'wrap',
|
|
});
|
|
|
|
export default AboutList;
|