Skip to content

Commit

Permalink
Base V5.0.1
Browse files Browse the repository at this point in the history
- Updating readme and links
- Minor version bump for index.scss and package.json
  • Loading branch information
matthewhartman committed May 1, 2020
1 parent a902809 commit 2c72be0
Show file tree
Hide file tree
Showing 5 changed files with 50 additions and 14 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.1] - 2020-05-01
### Base V5.0.1
- Updating readme and links
- Minor version bump for index.scss and package.json

## [5.0.0] - 2020-05-01
### Base V5.0.0
- Updated build tool from Webpack to Gulp 4
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.0",
"version": "5.0.1",
"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
53 changes: 42 additions & 11 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,33 +53,64 @@ Once you have Base installed, you can choose what to import and include your own
#### CSS Import:

```css
/* Import the entire Base Framework */
/* Import Base */
@import url("https://unpkg.com/@getbase/base/index.css");

/* OR import only what you need */
@import url("https://unpkg.com/@getbase/base/css/core.css");
@import url("https://unpkg.com/@getbase/base/css/grid.css");
/* Import Base Common */
@import url("https://unpkg.com/@getbase/base/code.css");
@import url("https://unpkg.com/@getbase/base/forms.css");
@import url("https://unpkg.com/@getbase/base/tables.css");
@import url("https://unpkg.com/@getbase/base/typography.css");
@import url("https://unpkg.com/@getbase/base/headings.css");

/* Add Your Website / App Styles */
/* ... */

/* Add Additional Modules */
@import url("https://unpkg.com/@getbase/base/containers.css");
@import url("https://unpkg.com/@getbase/base/grid.css");
@import url("https://unpkg.com/@getbase/base/horizontal-spacers.css");
@import url("https://unpkg.com/@getbase/base/vertical-spacers.css");
@import url("https://unpkg.com/@getbase/base/spacers.css");
@import url("https://unpkg.com/@getbase/base/display-helpers.css");
@import url("https://unpkg.com/@getbase/base/flex-helpers.css");
@import url("https://unpkg.com/@getbase/base/position-helpers.css");
@import url("https://unpkg.com/@getbase/base/typography-helpers.css");
```

#### SCSS Import:

```scss
/* Import the entire Base Framework */
@import "~@getbase/base/scss/index";
/* Import Base */
@import "core";

/* OR import only what you need */
@import "~getbase/base/scss/core";
@import "~getbase/base/scss/grid";
/* Import Base Common */
@import "code";
@import "forms";
@import "tables";
@import "typography";
@import "headings";

/* Your Other Styles */
/* Add Your Website / App Styles */
@import "main";

/* Add Additional Modules */
@import "containers";
@import "grid";
@import "horizontal-spacers";
@import "vertical-spacers";
@import "spacers";
@import "display-helpers";
@import "flex-helpers";
@import "position-helpers";
@import "typography-helpers";
```

* * *

## Documentation

The best way to get started is to view the [Base Styleguide](#)
The best way to get started is to view the [Base Styleguide](https://getbase.org/styleguide)

* * *

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.0 - Last Updated: May 01, 2020
// Version: 5.0.1 - Last Updated: May 01, 2020
========================================================================== */

Expand Down

0 comments on commit 2c72be0

Please sign in to comment.