The Lightelligence design system implementation in CSS
npm install @lightelligence/styles
The Lightelligence Styles are a set of components that require no JavaScript in order to function properly, styled according to our design system.
Using the Lightelligence Styles is as easy as including the bundled css file in your front-end and then add the corresponding class names to your elements.
<html>
<head>
<title>My awesome Lightelligence App</title>
<link
href="node_modules/@lightelligence/styles/dist/index.css"
rel="stylesheet"
/>
</head>
<body>
<div class="olt-Frame">
<button class="olt-Button">Hello World</button>
</div>
</body>
</html>
Check out the API reference to see the full documentation.
MIT