﻿.spawnmenuopen spawnmenu
{
	//transition: all 0.2s ease-out;
	pointer-events: all;
	opacity: 1;
	transform: scale( 1 );

}


.spawnpage
{

	&.active
	{
		display: flex;
		opacity: 1;
	}

	.canvas
	{
		overflow: scroll;
		width: 100%;
		flex-grow: 1;
		flex-wrap: wrap;
		justify-content: space-between;
		padding: 8px;

		.cell
		{
			padding: 4px;
		}

		.icon
		{
			color: rgba( #fff, 0.8 );
			font-size: 8px;
			text-align: center;
			cursor: pointer;
			width: 100%;
			height: 100%;
			background-position: center;
			background-size: cover;
			background-color: rgba(black, 0.0);
			justify-content: center;

			label
			{
				bottom: 2px;
				font-size: 12px;
				position: absolute;
				pointer-events: none;
			}

			&:hover
			{
				color: #fff;
				background-color: rgba(black, 0.1);
			}
		}
	}
}