Skip to content

Commit 6326372

Browse files
Base V5.0.2
- Updating readme examples - Minor version bump for index.scss and package.json
1 parent 2c72be0 commit 6326372

5 files changed

Lines changed: 46 additions & 3 deletions

File tree

changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Base Change Log
22

3+
## [5.0.2] - 2020-05-01
4+
### Base V5.0.2
5+
- Updating readme examples
6+
- Minor version bump for index.scss and package.json
7+
38
## [5.0.1] - 2020-05-01
49
### Base V5.0.1
510
- Updating readme and links

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@getbase/base",
3-
"version": "5.0.1",
3+
"version": "5.0.2",
44
"description": "A Rock Solid, Responsive CSS Framework built to work on all devices big, small and in-between.",
55
"homepage": "http://getbase.org/",
66
"author": "Matthew Hartman",

readme.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,44 @@ npm install --save @getbase/base
5050

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

53+
#### HTML/CSS References:
54+
55+
```html
56+
<!DOCTYPE html>
57+
<html>
58+
<head>
59+
<meta charset="UTF-8">
60+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
61+
<title>Your Website / App </title>
62+
<!-- Base -->
63+
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/index.css">
64+
<!-- Base Common -->
65+
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/code.css">
66+
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/forms.css">
67+
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/tables.css">
68+
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/typography.css">
69+
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/headings.css">
70+
<!-- Add Your Website / App Stylesheet -->
71+
<!-- ... -->
72+
<!-- Add Additional Modules -->
73+
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/containers.css">
74+
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/grid.css">
75+
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/horizontal-spacers.css">
76+
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/vertical-spacers.css">
77+
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/spacers.css">
78+
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/display-helpers.css">
79+
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/flex-helpers.css">
80+
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/position-helpers.css">
81+
<link ref="stylesheet" href="https://unpkg.com/@getbase/base/typography-helpers.css">
82+
</head>
83+
<body>
84+
<p>
85+
Base!
86+
</p>
87+
</body>
88+
</html>
89+
```
90+
5391
#### CSS Import:
5492

5593
```css

scss/index.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
// Base Stylesheet - http://getbase.org
44
// Author: Matthew Hartman - http://www.matthewhartman.com.au/
5-
// Version: 5.0.1 - Last Updated: May 01, 2020
5+
// Version: 5.0.2 - Last Updated: May 01, 2020
66
77
========================================================================== */
88

0 commit comments

Comments
 (0)