JSFiddle - React, Tailwind, and code Playground

by Ayyappan Sakthivadivel

HTML

<div id="container">
	<div id="loading-bubble">
		<div class="spinner">
			<div class="bounce1"></div>
			<div class="bounce2"></div>
			<div class="bounce3"></div>
		</div>
	</div>
</div>

SCSS

@mixin flex($justify, $align) {
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;

	justify-content: $justify;
	-webkit-justify-content: $justify;
	align-items: $align;
	-webkit-align-items: $align;
}

// SPINNER
.spinner { 
	position: absolute;
	
	top: 50%;
	left: 50%;

	width: 45px;
	height: 9px;

	margin-left: -22px;
	margin-top: -13px;

	text-align: center;
}
.spinner > div { 
	width: 9px;
	height: 9px;
	background-color: #dcdcdc;
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: bouncedelay 1.4s infinite ease-in-out;
	animation: bouncedelay 1400ms ease-in-out infinite;
	/* Prevent first frame from flickering when animation starts */ -webkit-animation-fill-mode: both;
	animation-fill-mode: both;

}
.spinner .bounce1 { 
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}
.spinner .bounce2 { 
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}
@mixin bouncedelay() {
	0%, 80%, 100% {
		transform: scale(0.0);
		-webkit-transform: scale(0.0);
	}
	40% {
		transform: scale(1.0);
		-webkit-transform: scale(1.0);
	}
}
@-webkit-keyframes bouncedelay {
	@include bouncedelay();
}
@keyframes bouncedelay {
	@include bouncedelay();
}


//	Loading bubble
$chat-accent:#ffc50a;
$chat-light: #ffffff;
$chat-bg: #ffc50a;
$chat-online: #ffc50a;
$chat-away: #ffc50a;
$chat-dim: #ffc50a;

#container {
	position: absolute;
	
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	
	@include flex( space-around, center );
}
#loading-bubble {
	
	@include flex( center, center );

	width: auto;
	height: auto;
	
	min-width: 73px;
	min-height: 40px;
	border-radius: 0;

	box-sizing: border-box;

	position: relative;
	
	background-color: $chat-accent;
	
	&.grey {
		background-color: $chat-dim;
		
		&:before {
			border-color: transparent $chat-dim transparent transparent;
		}
	}

	&:before {
		display: block;
		content: " ";

		width: 0;
		height: 0;
		border-style: solid;

		border-width: 0 12px 13px 0;
		border-color:...