ui/inputhint.razor.scss
InputHint {
	position: relative;
	flex-direction: row;
	align-items: center;

	img {
		width: 32px;
		background-size: contain;
		background-repeat: no-repeat;
	}

	&.pressed {
		img {
			//border-radius: 50%;
			background-image-tint: cyan;
			box-shadow: 0px 0px 20px rgba(cyan 1);
		}
	}
}