Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 567 Bytes

add_styling_with_bootstrap.md

File metadata and controls

20 lines (14 loc) · 567 Bytes

Add Styling with Bootstrap

We'll now install our first Meteor package.

Make sure you are in your app directory: meteor add twbs:bootstrap

After you install this, in your browser, you should see the default welcome screen with Bootstrap styling applied.

Add mobile meta tags (optional)

This helps ensure proper rendering on mobile devices. In Meteor, there is no need to include the html tags. Meteor will do that for you.

/client/head.html

<head>
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>