@import "/UI/Styles/styles.scss";

StickerEntry
{
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	justify-content: center;
	pointer-events: all;
	align-items: center;
	font-weight: bold;
	background-size: 100%;
	border-radius: 20px;
	width: 170px;
	height: 170px;
	z-index: 0;
	&:hover{
		z-index: 10;
	}
	
	.sticker{
		width: 100%;
		height: 100%;
		transition: all 0.05s;
		pointer-events: all;
		background-size: 100%;
		border-radius: 20px;
		transform: scale(1) rotate(0);
		&:hover{
			transition: all 0.05s;
			transform: scale(1.1) rotate(5deg);
		}
	}
}