JSFiddle - React, Tailwind, and code Playground
by joshmoto
HTML
<head>
<link rel="stylesheet" type="text/css" href={{ url_for("static", filename="main.scss") }}>
</head>
<body>
<div class="test">
<span>TEXT</span><br>
</div>
</body>
SCSS
@import url("https://fonts.googleapis.com/css2?family=Open:ital,wght@0,300;0,700;1,400&display=swap");
:root {
--color-grey-dark: #202326;
--color-green: #42b680;
--color-purple: #7288da;
}
* {
box-sizing: border-box;
}
body {
font-family: "Open Sans";
padding: 0;
margin: 0;
}
.test {
background: var(--color-grey-dark);
height: 100%;
width: 72px;
display: flex;
}