mirror of
https://github.com/strapi/strapi.git
synced 2025-11-05 20:36:08 +00:00
10 lines
142 B
JavaScript
10 lines
142 B
JavaScript
|
|
import styled from 'styled-components';
|
||
|
|
|
||
|
|
const Wrapper = styled.div`
|
||
|
|
.button-submit {
|
||
|
|
min-width: 140px;
|
||
|
|
}
|
||
|
|
`;
|
||
|
|
|
||
|
|
export default Wrapper;
|