Giter Club home page Giter Club logo

scoped-bootstrap's Introduction

Scoped Bootstrap

Scoped Bootstrap is a modified version of bootstrap that solves the styling issue of boostrap where it covers the entire html file and therefore colliding with you own styles. It does it by demanding that any bootstrap component should be used inside a root component that has a class '.scoped-bootstrap'. It may contain issues and bugs it's not been extensively tested.

npm install scoped-bootstrap

Usage

<div class="scoped-bootstrap">
<!-- Boostrap components goes inside here -->
 <div>
<!-- Other styling outside of the root bootstrap component will not be affected by bootstrap styling. -->

Custom Build

  1. Modify the postcss.config.js file, by adding the class prefix for the root component. Default is .scoped-bootstrap
'use strict'

module.exports = {
  map: true,
  plugins: {
    "postcss-prefix-selector": {
      exclude: [
        ':root'
      ],
      prefix: "<<put-your prefix here. Should start with dot(.) e.g. .ampath-fe>>"
    }
  }
}
  1. Build the project to produce the dist and deploy it as a tag, or publish to npm.
npm run build

Releasing

Modify package.json with <>

npm run build

git add -f dist

git commit -a -m 'releasing <<version>>'

git tag <<version>>

git reset --hard HEAD~

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

scoped-bootstrap's People

Contributors

nkimaina avatar joeldenning avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.