Skip to content

Commit

Permalink
Base V5.0.2
Browse files Browse the repository at this point in the history
- Updating readme examples
- Minor version bump for index.scss and package.json
  • Loading branch information
matthewhartman committed May 1, 2020
1 parent 2c72be0 commit 6326372
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 3 deletions.
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Base Change Log

## [5.0.2] - 2020-05-01
### Base V5.0.2
- Updating readme examples
- Minor version bump for index.scss and package.json

## [5.0.1] - 2020-05-01
### Base V5.0.1
- Updating readme and links
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@getbase/base",
"version": "5.0.1",
"version": "5.0.2",
"description": "A Rock Solid, Responsive CSS Framework built to work on all devices big, small and in-between.",
"homepage": "http://getbase.org/",
"author": "Matthew Hartman",
Expand Down
38 changes: 38 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,44 @@ npm install --save @getbase/base

Once you have Base installed, you can choose what to import and include your own custom styles.

#### HTML/CSS References:

```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Website / App </title>
<!-- Base -->
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/index.css">
<!-- Base Common -->
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/code.css">
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/forms.css">
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/tables.css">
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/typography.css">
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/headings.css">
<!-- Add Your Website / App Stylesheet -->
<!-- ... -->
<!-- Add Additional Modules -->
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/containers.css">
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/grid.css">
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/horizontal-spacers.css">
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/vertical-spacers.css">
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/spacers.css">
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/display-helpers.css">
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/flex-helpers.css">
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/position-helpers.css">
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/typography-helpers.css">
</head>
<body>
<p>
Base!
</p>
</body>
</html>
```

#### CSS Import:

```css
Expand Down
2 changes: 1 addition & 1 deletion scss/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Base Stylesheet - http://getbase.org
// Author: Matthew Hartman - http://www.matthewhartman.com.au/
// Version: 5.0.1 - Last Updated: May 01, 2020
// Version: 5.0.2 - Last Updated: May 01, 2020
========================================================================== */

Expand Down

0 comments on commit 6326372

Please sign in to comment.