mirror of
https://github.com/strapi/strapi.git
synced 2025-08-14 19:56:41 +00:00
30 lines
475 B
JavaScript
30 lines
475 B
JavaScript
![]() |
/*
|
||
|
*
|
||
|
*
|
||
|
* BackButton
|
||
|
*
|
||
|
*/
|
||
|
import styled from 'styled-components';
|
||
|
|
||
|
const BackButton = styled.button`
|
||
|
height: 6rem;
|
||
|
width: 6.5rem;
|
||
|
margin-right: 20px;
|
||
|
margin-left: -30px;
|
||
|
line-height: 6rem;
|
||
|
text-align: center;
|
||
|
color: #81848a;
|
||
|
border-right: 1px solid #f3f4f4;
|
||
|
&:before {
|
||
|
content: '\f053';
|
||
|
font-family: 'FontAwesome';
|
||
|
font-size: 1.8rem;
|
||
|
font-weight: bolder;
|
||
|
}
|
||
|
&:hover {
|
||
|
background-color: #f3f4f4;
|
||
|
}
|
||
|
`;
|
||
|
|
||
|
export default BackButton;
|