aboutsummaryrefslogtreecommitdiff
path: root/src/styles/girls.scss
blob: c922bc2b646c316d3d54cf28d63e9721219e0f0a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.preview {
	$transition: transform 0.3s ease;

	margin: 0.15rem;

	img {
		border-radius: 8px;
		transition: $transition;
	}

	&:hover {
		img {
			position: relative;
			z-index: 2;
			transition: $transition;
			transform: scale(1.05);
		}
	}

	display: flex;
	justify-content: center;
	align-items: center;
}