Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
[ENH] Minor bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
marcop135 committed Jun 26, 2021
1 parent f989879 commit f541eb4
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 27 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Changes to bullframe.css

## 3.8.2 (???, 2021)

* Upgrade cssnano, autoprefixer and postcss to major versions [(a6a9ecc)](https://github.com/marcop135/bullframe.css/commit/a6a9ecc3b52a30e1a5c4408967268d22f46a8e2c)
## 3.8.2 (June 26, 2021)

* Upgrade cssnano, autoprefixer and postcss plugins to major versions [(a6a9ecc)](https://github.com/marcop135/bullframe.css/commit/a6a9ecc3b52a30e1a5c4408967268d22f46a8e2c)
* Clean up `README.md`

## 3.8.1 (June 22, 2021)

Expand Down
22 changes: 2 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<p>
<a href="https://www.npmjs.com/package/bullframe.css"><img src="https://img.shields.io/npm/v/bullframe.css.svg?style=flat-square" alt="NPM page"></a>
<a href="https://github.com/marcop135/bullframe.css/commits"><img src="https://img.shields.io/github/last-commit/marcop135/bullframe.css?style=flat-square" alt="GitHub last commit"></a>
<a href="https://snyk.io/test/npm/bullframe.css"><img src="https://snyk.io/test/npm/bullframe.css/badge.svg?style=flat-square" alt="Known Vulnerabilities" data-canonical-src="https://snyk.io/test/npm/bullframe.css" style="max-width:100%;"></a>
<a href="https://github.com/marcop135/bullframe.css/blob/master/LICENSE"><img src="https://img.shields.io/github/license/marcop135/bullframe.css.svg?style=flat-square" alt="MIT license"></a>
</p>

Expand All @@ -15,7 +14,7 @@

bullframe.css is a Sass (SCSS) framework that works in all browsers, modern or not.

It's a cross-browser, responsive, IE8+ collection of default HTML UI elements ([atoms](https://bradfrost.com/blog/post/atomic-web-design)) for your Sass project.
It's a cross-browser (blink/webkit/gecko/trident), responsive, IE8+ collection of default HTML UI elements ([atoms](https://bradfrost.com/blog/post/atomic-web-design)) for your Sass project.

1. Add a good HTML template
2. Write semantic HTML5
Expand All @@ -41,19 +40,6 @@ It's a cross-browser, responsive, IE8+ collection of default HTML UI elements ([
- Isolated utility classes to avoid conflicts between frameworks' classes
- [`bullframe-classless.min.css`](https://github.com/marcop135/bullframe.css/blob/master/dist/css/bullframe-classless.min.css) is just 10KB~ min+gzip 🎉

## Internet Explorer usage and support

Do people still use Internet Explorer?

Short answer: **yes!** Enterprise-level companies, legacy business applications, accessibility-focused projects and some non-tech-savvy older people.
[Long answer](https://www.quora.com/Do-people-still-use-Internet-Explorer-in-2020)

[Browser worldwide usage comparison](https://gs.statcounter.com/browser-market-share/desktop/worldwide#monthly-201904-202004-bar)

Read this [Lea Verou’s Twitter thread](https://twitter.com/LeaVerou/status/1246252696602128384) to get more developers' points of view.

Bootstrap v5 [dropped IE10 and IE11 support](https://github.com/twbs/bootstrap/pull/30377). Read the [Hacker News thread](https://news.ycombinator.com/item?id=22802003).

## What's included

You'll see something like this:
Expand Down Expand Up @@ -110,8 +96,6 @@ bullframe.css/

### CDN

Get the latest release of the main build

JSDelivr (latest release, ready for production)

```html
Expand Down Expand Up @@ -268,14 +252,12 @@ Write semantic HTML and get nice styles and cross-browser normalization.
```html
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bullframe.css/dist/css/bullframe-classless.min.css">

<!-- (optional) center the page styling the <body> element -->
<!-- Center the page (optional) -->
<style>
body {
margin-left: auto;
margin-right: auto;
padding: 15px; /* for old IE only */
padding: 1.5rem;
max-width: 800px; /* for old IE only */
max-width: 80rem;
}
</style>
Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<title>Test page — bullframe.css Sass (SCSS) framework</title>
<meta name="description"
content="A quick look at a wide range of HTML elements, divided into several sections and rendered into unusual combinations, for testing purpose only." />
content="A quick look at a wide range of HTML elements, divided into several sections and rendered into unusual combinations, for testing purposes only." />

<!-- https://realfavicongenerator.net/ -->
<link rel="apple-touch-icon" sizes="180x180" href="./docs/test/icons/apple-touch-icon.png?v=PYqzMzgx6v" />
Expand All @@ -19,7 +19,7 @@
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#f95c1f" />

<link rel="stylesheet" href="./dist/css/bullframe-dark-prefers.min.css" />
<link rel="stylesheet" href="./dist/css/bullframe-dark-prefers.min.css?v3.8.1" />

<!-- this is just for a nicer demo -->
<link rel="stylesheet" href="./docs/test/css/style.css" />
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": "bullframe.css",
"version": "3.8.1",
"version": "3.8.2",
"description": "Solid, fluid, IE-friendly Sass (SCSS) framework",
"jsdelivr": "dist/css/bullframe.css",
"unpkg": "dist/css/bullframe.css",
Expand Down

0 comments on commit f541eb4

Please sign in to comment.