JSFiddle - React, Tailwind, and code Playground

by Bouteille Dimitri

SCSS

@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900');

$primary : #03A9F4;
$grey : rgba(0,0,0,0.54);
$grey-active : rgba(0,0,0,0.42);
$white : rgba(255,255,255,0.7);

$error : #ef5350;
$succes : #8BC34A;
$transition : all 0.4s ease-out;



* {
  padding: 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

.align{
  display: flex;
  &-bis{
    flex: 1;
    display:flex;
    justify-content: center;
    padding: 60px 0;
  }
  &.grey{
    background-color: rgb(245,245,245);
  }
}