Skip to content

Commit 24c0983

Browse files
committedApr 11, 2020
Uprade dependencies
1 parent 69af712 commit 24c0983

15 files changed

+6794
-720
lines changed
 

‎bower.json

+3-11
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,11 @@
11
{
22
"name": "bulma",
3-
"version": "0.8.1",
3+
"version": "0.8.2",
44
"homepage": "https://bulma.io",
5-
"authors": [
6-
"jgthms <bbxdesign@gmail.com>"
7-
],
5+
"authors": ["jgthms <bbxdesign@gmail.com>"],
86
"description": "Modern CSS framework based on Flexbox",
97
"main": "bulma.sass",
10-
"keywords": [
11-
"css",
12-
"sass",
13-
"flexbox",
14-
"responsive",
15-
"framework"
16-
],
8+
"keywords": ["css", "sass", "flexbox", "responsive", "framework"],
179
"license": "MIT",
1810
"ignore": [
1911
"**/.*",

‎bulma.sass

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@charset "utf-8"
2-
/*! bulma.io v0.8.1 | MIT License | github.com/jgthms/bulma */
2+
/*! bulma.io v0.8.2 | MIT License | github.com/jgthms/bulma */
33
@import "sass/utilities/_all"
44
@import "sass/base/_all"
55
@import "sass/elements/_all"

‎css/bulma.css

+6-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎css/bulma.css.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎css/bulma.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎docs/_includes/elements/github.html

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
<a class="button bd-github-button" href="{{ site.data.meta.sponsorship_url }}" target="_blank">
1+
<a
2+
class="button bd-github-button"
3+
href="{{ site.data.meta.sponsorship_url }}"
4+
target="_blank"
5+
>
26
<span class="icon">
37
<i class="fas fa-heart"></i>
48
</span>
59
<strong>Sponsor</strong>
6-
<em class="tag bd-mini-tag is-small is-success">New!</em>
710
</a>

‎docs/_sass/global.sass

+19-10
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,13 @@ svg
3737
p:first-child
3838
margin-right: 1em
3939

40+
$github-pink: #ea4aaa
4041
.bd-github-button
41-
background-color: #eff3f6
42-
background-image: linear-gradient(-180deg,#fafbfc,#eff3f6 90%)
43-
border-color: #1b1f2333
44-
color: #24292e
42+
background-color: $github-pink
43+
// background-image: linear-gradient(-180deg,#fafbfc,#eff3f6 90%)
44+
border-color: $github-pink !important
45+
// color: #24292e
46+
color: #fff
4547
font-size: 0.875rem
4648
height: auto
4749
padding: calc(0.5em - 1px) 1em
@@ -50,16 +52,23 @@ svg
5052
font-weight: $weight-semibold
5153
margin-top: -2px
5254
.icon
53-
color: #ea4aaa
55+
color: inherit
5456
.tag
5557
font-size: 0.5rem
5658
font-style: normal
5759
margin: -1px -8px 0 7px
58-
&:hover
59-
background-color: #e6ebf1
60-
background-image: linear-gradient(-180deg, #f0f3f6, #e6ebf1 90%)
61-
background-position: -.5em
62-
border-color: #1b1f2359
60+
&:hover,
61+
&:focus
62+
background-color: darken($github-pink, 5%)
63+
&:active
64+
background-color: darken($github-pink, 10%)
65+
&:hover,
66+
&:focus,
67+
&:active
68+
color: #fff
69+
// background-image: linear-gradient(-180deg, #f0f3f6, #e6ebf1 90%)
70+
// background-position: -.5em
71+
// border-color: #1b1f2359
6372
6473
.bd-patreon-button
6574
display: inline-block

‎docs/css/bulma-docs.css

+20-20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎docs/css/bulma-docs.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.