File size: 439 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import styled from '@emotion/styled';

export const ThumbnailLink = styled.a( {
	position: 'relative',
	':after': {
		content: '""',
		position: 'absolute',
		zIndex: -1,
		top: 0,
		left: 0,
		height: '100%',
		width: '100%',
		opacity: 0,
		borderRadius: '4px',
		boxShadow: '0 7px 30px -10px rgba( 0, 0, 0, 0.2 )',
		transition: 'opacity 0.3s',
	},
	':hover': {
		':after': {
			opacity: 1,
			transition: 'opacity 0.1s',
		},
	},
} );