reywood:bootstrap3-sass

v3.3.4_1Published 9 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

Meteor package for Bootstrap 3 with Sass support

To install

$ 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 '.meteor/local/build/programs/server/assets/packages/reywood_bootstrap3-sass/bootstrap';

Due to a current limitation of the Meteor packaging system, the above path may not exist the first time you run your Meteor app after installing this package. This will cause an error saying the file to import was not found. This may also occur if you run meteor reset. Restarting your app should fix this problem. See meteor/meteor#2606 and meteor/meteor#2796 for more info.

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.