Build 0.9.0

This commit is contained in:
Jeremy Thomas 2020-06-07 13:51:36 +01:00
parent 776c8e657e
commit 75db4c2acf
10 changed files with 23 additions and 10 deletions

View File

@ -2,7 +2,20 @@
## 0.9.0
### New features
### RTL support
Bulma now has **RTL support**.
By setting the Sass flag `$rtl` to `true`, you can create an RTL version of Bulma, thanks to 4 new Sass mixins:
* `=ltr`
* `=rtl`
* `=ltr-property($property, $spacing, $right: true)`
* `=ltr-position($spacing, $right: true)`
The Bulma package now also comes with a `bulma-rtl.css` and `bulma-rtl.min.css` file to be used straight away.
### Spacing helpers
Bulma now has **spacing helpers**: https://bulma.io/documentation/helpers/spacing-helpers/

View File

@ -1,6 +1,6 @@
{
"name": "bulma",
"version": "0.8.2",
"version": "0.9.0",
"homepage": "https://bulma.io",
"authors": ["jgthms <bbxdesign@gmail.com>"],
"description": "Modern CSS framework based on Flexbox",

2
bulma.sass vendored
View File

@ -1,5 +1,5 @@
@charset "utf-8"
/*! bulma.io v0.8.2 | MIT License | github.com/jgthms/bulma */
/*! bulma.io v0.9.0 | MIT License | github.com/jgthms/bulma */
@import "sass/utilities/_all"
@import "sass/base/_all"
@import "sass/elements/_all"

View File

@ -1,4 +1,4 @@
/*! bulma.io v0.8.2 | MIT License | github.com/jgthms/bulma */
/*! bulma.io v0.9.0 | MIT License | github.com/jgthms/bulma */
@-webkit-keyframes spinAround {
from {
transform: rotate(0deg);

File diff suppressed because one or more lines are too long

2
css/bulma.css vendored
View File

@ -1,4 +1,4 @@
/*! bulma.io v0.8.2 | MIT License | github.com/jgthms/bulma */
/*! bulma.io v0.9.0 | MIT License | github.com/jgthms/bulma */
@-webkit-keyframes spinAround {
from {
transform: rotate(0deg);

2
css/bulma.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -1,5 +1,5 @@
@charset "UTF-8";
/*! bulma.io v0.8.2 | MIT License | github.com/jgthms/bulma */
/*! bulma.io v0.9.0 | MIT License | github.com/jgthms/bulma */
@-webkit-keyframes spinAround {
from {
transform: rotate(0deg);

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{
"name": "bulma",
"version": "0.8.2",
"version": "0.9.0",
"homepage": "https://bulma.io",
"author": {
"name": "Jeremy Thomas",