bootstrap-size-display
v1.0.6
Published
Development utility to see current bootstrap size in the browser
Downloads
11
Maintainers
Readme
Bootstrap Size Display
A simple development utility for displaying the current Bootstrap class in the browser. Compatible from v3.0.0
.
Install
Install it as a local dependency:
$ npm i --save-dev bootstrap-size-display
$ yarn add -D bootstrap-size-display
Or use the unpkg
cdn:
<script src="https://unpkg.com/bootstrap-size-display/dist/bsd.min.js"></script>
Setup
Call bsd
to add display on page load:
...
<script src="https://unpkg.com/bootstrap-size-display/dist/bsd.min.js"></script>
</head>
<body>
...
<script>
bsd()
</script>
...
Importing the module is only necessary when used as a local dependency.
// CommonJS
var bsd = require('bootstrap-size-display');
// ES6 modules
import bsd from 'bootstrap-size-display';
bsd();
Overriding default styles
Default styles are:
#bootstrap-size-display {
position: fixed;
font-size: 2rem;
z-index: 1000000;
bottom: .5rem;
right: .5rem;
}
To override default styles there are two options:
- Initiate with a javascript object to set inline style:
bsd({
fontSize: '20px',
top: '5px',
left: '10px',
color: 'purple';
});
- Override styling in custom
css
(selector#bootstrap-size-display
) using the.override
class:
#bootstrap-size-display.override {
fontSize: 20px;
top: 5px;
left: 10px;
color: purple;
}
NOTE: Javascript initiation takes precedence over css
rules.