JSFiddle - React, Tailwind, and code Playground

HTML

<button type="button" class="close" data-dismiss="modal">Close</button>
<div class="rouletteWheelGradient">
asdf
</div>

CSS

.rouletteWheelGradient{
margin-top: 52px;
}

JavaScript

$(document).ready(function(){
	$('button.close').click(function(e){
  	e.preventDefault();
      $('.rouletteWheelGradient').css({'margin-top':'62px'});
  });
})