This whirlwind CSS update adds 1 new class.
1 file(s) changed.
0 file(s) created.
The new class added is col-green
Assuming you have already ran
npm i whirlwindcss
npm i postcss
An example in HTML of how this whould work:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="whirlwindcss/dist/classes.css" />
<title>My webpage</title>
</head>
<body>
<div id="App">
<header>
<h1 class="col-green">A green header</h1>
</header>
</div>
</body>
</html>
Top comments (0)