mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-16 01:29:11 +08:00
25 lines
461 B
TypeScript
25 lines
461 B
TypeScript
|
import React from 'react';
|
||
|
import { css, Global } from '@emotion/react';
|
||
|
|
||
|
export default () => (
|
||
|
<Global
|
||
|
styles={css`
|
||
|
.design-inline-cards {
|
||
|
display: flex;
|
||
|
margin: 0 -20px;
|
||
|
}
|
||
|
.design-inline-cards > * {
|
||
|
flex: 10%;
|
||
|
margin: 0 20px;
|
||
|
}
|
||
|
.design-inline-cards img {
|
||
|
width: 100%;
|
||
|
max-width: 100%;
|
||
|
}
|
||
|
.design-inline-cards h4 {
|
||
|
margin-bottom: 0;
|
||
|
}
|
||
|
`}
|
||
|
/>
|
||
|
);
|