reywood:bootstrap3-sass

v3.3.7_1Published 7 years ago

This package has not had recent updates. Please investigate it's current state before committing to using it in your project.

meteor-bootstrap3-sass

Build Status

Meteor package for Bootstrap 3 with Sass support

To install

Install the fourseven:scss SCSS compiler package and the reywood:bootstrap3-sass package.

$ meteor add fourseven:scss
$ meteor add reywood:bootstrap3-sass

To use

To activate bootstrap styles on your site, add the following line to the top of your main scss file:

@import '{reywood:bootstrap3-sass}/bootstrap';

Be sure to add the appropriate tags (as recommended by Bootstrap) to your document <head> somewhere in your HTML. Where you add these tags is dependent on how your meteor project is structured.

1<head>
2	<meta http-equiv="X-UA-Compatible" content="IE=edge">
3	<meta name="viewport" content="width=device-width, initial-scale=1">
4	<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
5	<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
6	<!--[if lt IE 9]>
7		<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
8		<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
9	<![endif]-->
10</head>

If you find a bug or would like to see an improvement made, please file an issue on GitHub.