Newer
Older
smart-home-server / webclient / src / scss / app / _load-screen.scss
.load-screen {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;

	display: flex;
	flex-direction: row;
  align-items: center;
  justify-content: center;

	visibility: hidden;
	opacity: 0;
	background: $color-black;

	transition-duration: .2s;
	transition-property: opacity, visibility;

	&.a-show {
		visibility: visible;
		opacity: 1;
		z-index: 900;
		transition-duration: 0s;
	}
}