Socket
Book a DemoInstallSign in
Socket

@sevn/ui

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sevn/ui

A theme for Dashboards, Intranets, and whatnot.

latest
Source
npmnpm
Version
0.1.3
Version published
Maintainers
1
Created
Source



SEVN:ui
A Bootstrap theme for Dashboards, Intranets, and whatnot.

Installation & Usage

Simply add it to package.json dependencies:

+ "@sevn/ui": "git@github.com:sevn/ui.git"

And then import it into your SASS or JavaScript file:

@import "../../node_modules/@sevn/ui/css/ui.css";
import "@sevn/ui/css/ui.css";

From now own you can refer to the Bootstrap 5 docs. Any component there is supported by SEVN:ui.

Contributing

Simply edit the file src/scss/custom.scss to make changes to the Bootstrap build.

You can run npm run dev to check some components on localhost:3000.

Alternatively, in order to check SEVN:ui agains all Bootstrap components, you can:

  • Open Bootstrap 5 docs in a browser;
  • Block the Bootstrap Docs CSS network request in Chrome DevTools;
  • Run npm run dev;
  • Copy this script and paste it on DevTools console:
(() => {
  const linkEl = document.createElement("link");
  linkEl.rel = `stylesheet`;
  linkEl.href = "http://localhost:3000/css/ui.css";
  document.body.append(linkEl);
})();

Now you have your own SEVN:ui docs. :)

FAQs

Package last updated on 26 Jan 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts