0.1.1 • Published 2 years ago

@bs-solutions/bootstrap-theme v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Bastion styles for Bootstrap

Changing Bootstrap theme to Bastion Company Styles.

1. Install packages

npm install @bs-solutions/bootstrap-styles

2. Add styles

Add Bastion company style imports @bs-solutions/bootstrap-styles/styles to your project.

2.1 Into your common (root) *.scss file

Example:

@import '@bs-solutions/bootstrap-styles/styles';

// your awesome styles

2.2 Into your common (root) .js, .jsx, .ts, .tsx file

Example:

import { StrictMode } from "react";
import { createRoot } from "react-dom/client";

import "@bs-solutions/bootstrap-styles/styles.scss";

// your awesome code