bulma-clean-theme 0.14.0 → 1.0.0.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (190) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -0
  3. data/_includes/callouts.html +12 -5
  4. data/_includes/cookie-banner.html +1 -1
  5. data/_includes/hero.html +5 -3
  6. data/_includes/showcase.html +8 -6
  7. data/_layouts/default.html +1 -0
  8. data/_layouts/post.html +7 -3
  9. data/_sass/_main.scss +3 -2
  10. data/node_modules/.package-lock.json +211 -8
  11. data/node_modules/bulma/LICENSE +1 -1
  12. data/node_modules/bulma/README.md +56 -52
  13. data/node_modules/bulma/bulma.scss +4 -0
  14. data/node_modules/bulma/css/bulma.css +19282 -8696
  15. data/node_modules/bulma/css/bulma.css.map +1 -1
  16. data/node_modules/bulma/css/bulma.min.css +3 -1
  17. data/node_modules/bulma/css/versions/bulma-no-dark-mode.min.css +3 -0
  18. data/node_modules/bulma/css/versions/bulma-no-dark-mode.min.css.map +1 -0
  19. data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.min.css +3 -0
  20. data/node_modules/bulma/css/versions/bulma-no-helpers-prefixed.min.css.map +1 -0
  21. data/node_modules/bulma/css/versions/bulma-no-helpers.min.css +3 -0
  22. data/node_modules/bulma/css/versions/bulma-no-helpers.min.css.map +1 -0
  23. data/node_modules/bulma/css/versions/bulma-prefixed.min.css +3 -0
  24. data/node_modules/bulma/css/versions/bulma-prefixed.min.css.map +1 -0
  25. data/node_modules/bulma/package.json +25 -20
  26. data/node_modules/bulma/sass/_index.scss +10 -0
  27. data/node_modules/bulma/sass/base/_index.scss +6 -0
  28. data/node_modules/bulma/sass/base/animations.scss +15 -0
  29. data/node_modules/bulma/sass/base/generic.scss +239 -0
  30. data/node_modules/bulma/sass/base/minireset.scss +92 -0
  31. data/node_modules/bulma/sass/base/skeleton.scss +126 -0
  32. data/node_modules/bulma/sass/components/_index.scss +13 -0
  33. data/node_modules/bulma/sass/components/breadcrumb.scss +139 -0
  34. data/node_modules/bulma/sass/components/card.scss +162 -0
  35. data/node_modules/bulma/sass/components/dropdown.scss +188 -0
  36. data/node_modules/bulma/sass/components/menu.scss +165 -0
  37. data/node_modules/bulma/sass/components/message.scss +183 -0
  38. data/node_modules/bulma/sass/components/modal.scss +164 -0
  39. data/node_modules/bulma/sass/components/navbar.scss +788 -0
  40. data/node_modules/bulma/sass/components/pagination.scss +379 -0
  41. data/node_modules/bulma/sass/components/panel.scss +218 -0
  42. data/node_modules/bulma/sass/components/tabs.scss +273 -0
  43. data/node_modules/bulma/sass/elements/_index.scss +16 -0
  44. data/node_modules/bulma/sass/elements/block.scss +6 -0
  45. data/node_modules/bulma/sass/elements/box.scss +59 -0
  46. data/node_modules/bulma/sass/elements/button.scss +640 -0
  47. data/node_modules/bulma/sass/elements/content.scss +283 -0
  48. data/node_modules/bulma/sass/elements/delete.scss +6 -0
  49. data/node_modules/bulma/sass/elements/icon.scss +67 -0
  50. data/node_modules/bulma/sass/elements/image.scss +62 -0
  51. data/node_modules/bulma/sass/elements/loader.scss +15 -0
  52. data/node_modules/bulma/sass/elements/notification.scss +105 -0
  53. data/node_modules/bulma/sass/elements/progress.scss +115 -0
  54. data/node_modules/bulma/sass/elements/table.scss +261 -0
  55. data/node_modules/bulma/sass/elements/tag.scss +219 -0
  56. data/node_modules/bulma/sass/elements/title.scss +128 -0
  57. data/node_modules/bulma/sass/form/_index.scss +9 -0
  58. data/node_modules/bulma/sass/form/checkbox-radio.scss +32 -0
  59. data/node_modules/bulma/sass/form/file.scss +330 -0
  60. data/node_modules/bulma/sass/form/input-textarea.scss +123 -0
  61. data/node_modules/bulma/sass/form/select.scss +143 -0
  62. data/node_modules/bulma/sass/form/shared.scss +172 -0
  63. data/node_modules/bulma/sass/form/tools.scss +341 -0
  64. data/node_modules/bulma/sass/grid/_index.scss +5 -0
  65. data/node_modules/bulma/sass/grid/columns-v2.scss +957 -0
  66. data/node_modules/bulma/sass/grid/columns.scss +877 -0
  67. data/node_modules/bulma/sass/grid/grid.scss +209 -0
  68. data/node_modules/bulma/sass/helpers/_index.scss +15 -0
  69. data/node_modules/bulma/sass/helpers/aspect-ratio.scss +10 -0
  70. data/node_modules/bulma/sass/helpers/border.scss +15 -0
  71. data/node_modules/bulma/sass/helpers/color.scss +364 -0
  72. data/node_modules/bulma/sass/helpers/flexbox.scss +62 -0
  73. data/node_modules/bulma/sass/helpers/float.scss +28 -0
  74. data/node_modules/bulma/sass/helpers/gap.scss +24 -0
  75. data/node_modules/bulma/sass/helpers/other.scss +19 -0
  76. data/node_modules/bulma/sass/helpers/overflow.scss +21 -0
  77. data/node_modules/bulma/sass/helpers/position.scss +19 -0
  78. data/node_modules/bulma/sass/helpers/spacing.scss +64 -0
  79. data/node_modules/bulma/sass/helpers/typography.scss +168 -0
  80. data/node_modules/bulma/sass/helpers/visibility.scss +221 -0
  81. data/node_modules/bulma/sass/layout/_index.scss +9 -0
  82. data/node_modules/bulma/sass/layout/container.scss +51 -0
  83. data/node_modules/bulma/sass/layout/footer.scss +23 -0
  84. data/node_modules/bulma/sass/layout/hero.scss +270 -0
  85. data/node_modules/bulma/sass/layout/level.scss +107 -0
  86. data/node_modules/bulma/sass/layout/media.scss +106 -0
  87. data/node_modules/bulma/sass/layout/section.scss +34 -0
  88. data/node_modules/bulma/sass/themes/_index.scss +35 -0
  89. data/node_modules/bulma/sass/themes/dark.scss +56 -0
  90. data/node_modules/bulma/sass/themes/light.scss +145 -0
  91. data/node_modules/bulma/sass/themes/setup.scss +174 -0
  92. data/node_modules/bulma/sass/utilities/_index.scss +7 -0
  93. data/node_modules/bulma/sass/utilities/controls.scss +85 -0
  94. data/node_modules/bulma/sass/utilities/css-variables.scss +425 -0
  95. data/node_modules/bulma/sass/utilities/derived-variables.scss +112 -0
  96. data/node_modules/bulma/sass/utilities/extends.scss +34 -0
  97. data/node_modules/bulma/sass/utilities/functions.scss +258 -0
  98. data/node_modules/bulma/sass/utilities/initial-variables.scss +155 -0
  99. data/node_modules/bulma/sass/utilities/mixins.scss +460 -0
  100. data/node_modules/bulma/versions/bulma-no-dark-mode.scss +19 -0
  101. data/node_modules/bulma/versions/bulma-no-helpers-prefixed.scss +13 -0
  102. data/node_modules/bulma/versions/bulma-no-helpers.scss +11 -0
  103. data/node_modules/bulma/versions/bulma-prefixed.scss +6 -0
  104. data/node_modules/bulma-block-list/README.md +12 -6
  105. data/node_modules/bulma-block-list/docs/.nojekyll +0 -0
  106. data/node_modules/bulma-block-list/docs/docs.css +22782 -0
  107. data/node_modules/bulma-block-list/docs/docs.css.map +1 -0
  108. data/node_modules/bulma-block-list/docs/index.html +376 -307
  109. data/node_modules/bulma-block-list/package.json +8 -3
  110. data/node_modules/bulma-block-list/src/block-list.scss +99 -125
  111. data/node_modules/bulma-block-list/src/docs.scss +5 -0
  112. data/package-lock.json +353 -16
  113. data/package.json +2 -2
  114. metadata +97 -82
  115. data/node_modules/bulma/bulma.sass +0 -10
  116. data/node_modules/bulma/css/bulma-rtl.css +0 -11851
  117. data/node_modules/bulma/css/bulma-rtl.css.map +0 -1
  118. data/node_modules/bulma/css/bulma-rtl.min.css +0 -1
  119. data/node_modules/bulma/sass/base/_all.sass +0 -6
  120. data/node_modules/bulma/sass/base/animations.sass +0 -5
  121. data/node_modules/bulma/sass/base/generic.sass +0 -145
  122. data/node_modules/bulma/sass/base/helpers.sass +0 -1
  123. data/node_modules/bulma/sass/base/minireset.sass +0 -79
  124. data/node_modules/bulma/sass/components/_all.sass +0 -15
  125. data/node_modules/bulma/sass/components/breadcrumb.sass +0 -77
  126. data/node_modules/bulma/sass/components/card.sass +0 -103
  127. data/node_modules/bulma/sass/components/dropdown.sass +0 -83
  128. data/node_modules/bulma/sass/components/level.sass +0 -79
  129. data/node_modules/bulma/sass/components/media.sass +0 -59
  130. data/node_modules/bulma/sass/components/menu.sass +0 -59
  131. data/node_modules/bulma/sass/components/message.sass +0 -101
  132. data/node_modules/bulma/sass/components/modal.sass +0 -117
  133. data/node_modules/bulma/sass/components/navbar.sass +0 -446
  134. data/node_modules/bulma/sass/components/pagination.sass +0 -167
  135. data/node_modules/bulma/sass/components/panel.sass +0 -121
  136. data/node_modules/bulma/sass/components/tabs.sass +0 -176
  137. data/node_modules/bulma/sass/elements/_all.sass +0 -16
  138. data/node_modules/bulma/sass/elements/box.sass +0 -26
  139. data/node_modules/bulma/sass/elements/button.sass +0 -357
  140. data/node_modules/bulma/sass/elements/container.sass +0 -29
  141. data/node_modules/bulma/sass/elements/content.sass +0 -162
  142. data/node_modules/bulma/sass/elements/form.sass +0 -1
  143. data/node_modules/bulma/sass/elements/icon.sass +0 -46
  144. data/node_modules/bulma/sass/elements/image.sass +0 -73
  145. data/node_modules/bulma/sass/elements/notification.sass +0 -52
  146. data/node_modules/bulma/sass/elements/other.sass +0 -31
  147. data/node_modules/bulma/sass/elements/progress.sass +0 -73
  148. data/node_modules/bulma/sass/elements/table.sass +0 -134
  149. data/node_modules/bulma/sass/elements/tag.sass +0 -140
  150. data/node_modules/bulma/sass/elements/title.sass +0 -70
  151. data/node_modules/bulma/sass/form/_all.sass +0 -9
  152. data/node_modules/bulma/sass/form/checkbox-radio.sass +0 -22
  153. data/node_modules/bulma/sass/form/file.sass +0 -184
  154. data/node_modules/bulma/sass/form/input-textarea.sass +0 -66
  155. data/node_modules/bulma/sass/form/select.sass +0 -88
  156. data/node_modules/bulma/sass/form/shared.sass +0 -60
  157. data/node_modules/bulma/sass/form/tools.sass +0 -215
  158. data/node_modules/bulma/sass/grid/_all.sass +0 -5
  159. data/node_modules/bulma/sass/grid/columns.sass +0 -513
  160. data/node_modules/bulma/sass/grid/tiles.sass +0 -36
  161. data/node_modules/bulma/sass/helpers/_all.sass +0 -12
  162. data/node_modules/bulma/sass/helpers/color.sass +0 -39
  163. data/node_modules/bulma/sass/helpers/flexbox.sass +0 -35
  164. data/node_modules/bulma/sass/helpers/float.sass +0 -10
  165. data/node_modules/bulma/sass/helpers/other.sass +0 -14
  166. data/node_modules/bulma/sass/helpers/overflow.sass +0 -2
  167. data/node_modules/bulma/sass/helpers/position.sass +0 -7
  168. data/node_modules/bulma/sass/helpers/spacing.sass +0 -31
  169. data/node_modules/bulma/sass/helpers/typography.sass +0 -103
  170. data/node_modules/bulma/sass/helpers/visibility.sass +0 -122
  171. data/node_modules/bulma/sass/layout/_all.sass +0 -6
  172. data/node_modules/bulma/sass/layout/footer.sass +0 -11
  173. data/node_modules/bulma/sass/layout/hero.sass +0 -153
  174. data/node_modules/bulma/sass/layout/section.sass +0 -17
  175. data/node_modules/bulma/sass/utilities/_all.sass +0 -9
  176. data/node_modules/bulma/sass/utilities/animations.sass +0 -1
  177. data/node_modules/bulma/sass/utilities/controls.sass +0 -49
  178. data/node_modules/bulma/sass/utilities/derived-variables.sass +0 -114
  179. data/node_modules/bulma/sass/utilities/extends.sass +0 -25
  180. data/node_modules/bulma/sass/utilities/functions.sass +0 -135
  181. data/node_modules/bulma/sass/utilities/initial-variables.sass +0 -79
  182. data/node_modules/bulma/sass/utilities/mixins.sass +0 -303
  183. data/node_modules/bulma-block-list/docs/Gemfile +0 -3
  184. data/node_modules/bulma-block-list/docs/_config.yml +0 -17
  185. data/node_modules/bulma-block-list/docs/_data/menu.yaml +0 -24
  186. data/node_modules/bulma-block-list/docs/_sass/_block-list.scss +0 -156
  187. data/node_modules/bulma-block-list/docs/_sass/_main.scss +0 -20
  188. data/node_modules/bulma-block-list/docs/assets/css/app.scss +0 -7
  189. data/node_modules/bulma-block-list/docs/favicon.ico +0 -0
  190. data/node_modules/bulma-block-list/src/demo.scss +0 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6ee2c200e9a0fcf1fc20182dcc907a20b87aab5f7faddb7b332cceaf03a1d537
4
- data.tar.gz: 1e5da6fa3bd166ebca0bff7c1b7ff81d0d5ae781fcc6be25809cad5c07c8ae63
3
+ metadata.gz: 8754cb70dcdefab68d6fc924926f22f56d373b29ec5ee73986099e4798bcc52b
4
+ data.tar.gz: 277aee383af5d4fa89b96772395002480b2810f66c1711c78d1dcea69bd94506
5
5
  SHA512:
6
- metadata.gz: 148735fb9e0485a36b267e805b59d4e97086668ad7b7522698eb641537922f3acc6cb5f4fbad6f8e4cf341190cd81ca95fb3c2e1d52bf40cee1de19dade62ee4
7
- data.tar.gz: c67de5acd9ff350fb38ef312d6f9f3d39ef7be7e8c3ec44af5603c23eb997ed99b2904909853a2a07d493cd3294e0bfefc39f4f297d14fffe5c10dc8f2719ae7
6
+ metadata.gz: 87689f87ec703e0400bde2574cb561dcb0709c3307ea13b108ad74dc129c8e7d9ddb06452d30b7a3636981120d293bbeff6b08bb9741439f2a2115feb4268202
7
+ data.tar.gz: df494a625dc204cc75ba81695eb31e13fbf62a9088dcf385bd3ca825bf7dc1efaf26d66e663f987c527f21fe96bb1f5c9b001d8996e7a10d8c2fd39b92308849
data/README.md CHANGED
@@ -11,6 +11,7 @@ The theme uses [Alpine.js](https://github.com/alpinejs/alpine) for its interacti
11
11
 
12
12
  * [Installation](#installation)
13
13
  * [Documentation](#documentation)
14
+ * [Upgrading to v1](#upgrading-to-v1)
14
15
  * [Contributing](#contributing)
15
16
  * [Development](#development)
16
17
  * [Licence](#licence)
@@ -49,6 +50,10 @@ Or install it yourself as:
49
50
 
50
51
  Check out the demo site for the [Documentation](https://www.csrhymes.com/bulma-clean-theme/docs/)
51
52
 
53
+ ## Upgrading to v1
54
+
55
+ There are several breaking changes for v1. Please read the [upgrade guide](https://www.csrhymes.com/bulma-clean-theme/docs/upgrading-to-v1/) for more information.
56
+
52
57
  ## Contributing
53
58
 
54
59
  Bug reports and pull requests are welcome on GitHub at https://github.com/chrisrhymes/bulma-clean-theme. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
@@ -19,15 +19,22 @@
19
19
  <p class="subtitle is-5">{{ callout.subtitle }}</p>
20
20
 
21
21
  {% if callout.description %}
22
- <div class="content">
23
- <p>{{ callout.description | newline_to_br }}</p>
22
+ <div class="my-4">
23
+ <div class="content">
24
+ <p>{{ callout.description | newline_to_br }}</p>
25
+ </div>
24
26
  </div>
25
27
  {% endif %}
26
28
 
27
29
  {% if callout.call_to_action_name %}
28
- <a href="{{ callout.call_to_action_link | relative_url }}" class="button is-primary">
29
- {{ callout.call_to_action_name }}
30
- </a>
30
+ <div class="my-4">
31
+ <a
32
+ href="{{ callout.call_to_action_link | relative_url }}"
33
+ class="button is-primary"
34
+ >
35
+ {{ callout.call_to_action_name }}
36
+ </a>
37
+ </div>
31
38
  {% endif %}
32
39
  </div>
33
40
  {% endfor %}
@@ -14,7 +14,7 @@
14
14
  </p>
15
15
  </div>
16
16
 
17
- <div class="buttons">
17
+ <div class="buttons mt-4">
18
18
  <button class="button is-primary" onclick="acceptCookies()">Accept all cookies</button>
19
19
  <button class="button is-primary" onclick="rejectCookies()">Reject all cookies</button>
20
20
  </div>
data/_includes/hero.html CHANGED
@@ -9,9 +9,11 @@
9
9
  <h1 class="title is-2">{{ page.title }}</h1>
10
10
  <p class="subtitle is-3">{{ page.subtitle }}</p>
11
11
  {% if page.hero_link %}
12
- <a href="{{ page.hero_link | relative_url }}" class="button is-info is-large">
13
- {{- page.hero_link_text -}}
14
- </a>
12
+ <div class="my-4">
13
+ <a href="{{ page.hero_link | relative_url }}" class="button is-info is-large">
14
+ {{- page.hero_link_text -}}
15
+ </a>
16
+ </div>
15
17
  {% endif %}
16
18
  </div>
17
19
  </div>
@@ -17,7 +17,7 @@
17
17
  <p class="subtitle">{{ item.subtitle }}</p>
18
18
 
19
19
  {% if item.github %}
20
- <div class="buttons is-centered">
20
+ <div class="buttons is-centered my-4">
21
21
  <a
22
22
  href="https://github.com/{{ item.github }}/stargazers"
23
23
  class="button is-white is-small"
@@ -53,7 +53,7 @@
53
53
  </div>
54
54
 
55
55
  {% if item.features %}
56
- <ul class="block-list {{ item.features_styles }}">
56
+ <ul class="block-list is-dark {{ item.features_styles }}">
57
57
  {% for feature in item.features %}
58
58
  <li>{{ feature }}</li>
59
59
  {% endfor %}
@@ -62,16 +62,18 @@
62
62
 
63
63
  {% if item.tags %}
64
64
  {% assign tags = item.tags | split: ',' %}
65
- <div class="tags is-centered">
65
+ <div class="tags is-centered my-4">
66
66
  {% for tag in tags %}
67
67
  {% include tag.html tag=tag style="is-dark" %}
68
68
  {% endfor %}
69
69
  </div>
70
70
  {% endif %}
71
71
 
72
- <a href="{{ item.link }}" class="button is-primary">
73
- {{ item.link_text }}
74
- </a>
72
+ <div class="my-4">
73
+ <a href="{{ item.link }}" class="button is-primary">
74
+ {{ item.link_text }}
75
+ </a>
76
+ </div>
75
77
  </div>
76
78
  </div>
77
79
  </div>
@@ -17,6 +17,7 @@
17
17
  {% if site.fixed_navbar %}
18
18
  class="has-navbar-fixed-{{ site.fixed_navbar }}"
19
19
  {% endif %}
20
+ class="theme-light"
20
21
  >
21
22
  {% include head.html %}
22
23
  <body>
data/_layouts/post.html CHANGED
@@ -11,16 +11,20 @@ layout: default
11
11
  {{ content }}
12
12
  </div>
13
13
 
14
- <div class="tags">
14
+ <div class="tags my-4">
15
15
  {% for tag in page.tags %}
16
16
  {% include tag.html tag=tag %}
17
17
  {% endfor %}
18
18
  </div>
19
19
 
20
20
  {% unless site.hide_share_buttons %}
21
- {% include share-buttons.html %}
21
+ <div class="my-4">
22
+ {% include share-buttons.html %}
23
+ </div>
22
24
  {% endunless %}
23
25
 
24
26
  {% if site.disqus.shortname %}
25
- {% include disqus.html %}
27
+ <div class="my-4">
28
+ {% include disqus.html %}
29
+ </div>
26
30
  {% endif %}
data/_sass/_main.scss CHANGED
@@ -9,13 +9,14 @@ $tabs-link-active-border-bottom-color: $primary;
9
9
 
10
10
  $modal-content-width: 800px;
11
11
 
12
- @import "../node_modules/bulma/bulma.sass";
12
+ @import "bulma/sass";
13
+ @import "bulma/sass/utilities/mixins";
13
14
  $hero-darken: $dark !default;
14
15
 
15
16
  @import "layout";
16
17
  @import "syntax";
17
18
  @import "showcase";
18
- @import "../node_modules/bulma-block-list/src/block-list.scss";
19
+ @import "bulma-block-list/src/block-list.scss";
19
20
 
20
21
  .gh-sponsor {
21
22
  color: #ea4aaa;
@@ -1,20 +1,223 @@
1
1
  {
2
2
  "name": "bulma-clean-theme",
3
3
  "version": "1.0.0",
4
- "lockfileVersion": 2,
4
+ "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
+ "node_modules/anymatch": {
8
+ "version": "3.1.3",
9
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
10
+ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
11
+ "dependencies": {
12
+ "normalize-path": "^3.0.0",
13
+ "picomatch": "^2.0.4"
14
+ },
15
+ "engines": {
16
+ "node": ">= 8"
17
+ }
18
+ },
19
+ "node_modules/binary-extensions": {
20
+ "version": "2.3.0",
21
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
22
+ "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
23
+ "engines": {
24
+ "node": ">=8"
25
+ },
26
+ "funding": {
27
+ "url": "https://github.com/sponsors/sindresorhus"
28
+ }
29
+ },
30
+ "node_modules/braces": {
31
+ "version": "3.0.2",
32
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
33
+ "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
34
+ "dependencies": {
35
+ "fill-range": "^7.0.1"
36
+ },
37
+ "engines": {
38
+ "node": ">=8"
39
+ }
40
+ },
7
41
  "node_modules/bulma": {
8
- "version": "0.9.4",
9
- "resolved": "https://registry.npmjs.org/bulma/-/bulma-0.9.4.tgz",
10
- "integrity": "sha512-86FlT5+1GrsgKbPLRRY7cGDg8fsJiP/jzTqXXVqiUZZ2aZT8uemEOHlU1CDU+TxklPEZ11HZNNWclRBBecP4CQ=="
42
+ "version": "1.0.0",
43
+ "resolved": "https://registry.npmjs.org/bulma/-/bulma-1.0.0.tgz",
44
+ "integrity": "sha512-7n49v/gdHXaHcU9fVobqGXO2OguiCoMh6CLbeX7jq00XrZ5vOSE4LNS0S/0Q6rlBbckY6kk6W7LwqxS0nu4bug==",
45
+ "dependencies": {
46
+ "sass": "^1.71.1"
47
+ }
11
48
  },
12
49
  "node_modules/bulma-block-list": {
13
- "version": "0.7.0",
14
- "resolved": "https://registry.npmjs.org/bulma-block-list/-/bulma-block-list-0.7.0.tgz",
15
- "integrity": "sha512-IicPQLcw4iX74waDAYhHT4LPbgc3qUPcrF5tOgNQGAUypoAcyiFjW2mBpLe+GCtQAYsDWmpu+X0nxhmUdOdAGw==",
50
+ "version": "1.0.0",
51
+ "resolved": "https://registry.npmjs.org/bulma-block-list/-/bulma-block-list-1.0.0.tgz",
52
+ "integrity": "sha512-3lGYDMJjRS3aF/zua7Dq69Aagae+55JxSVX03JdlLvS3cqH8sv7uTZLUbzM1ybdLweNh7bQkTX5ERmVY9lbMIA==",
53
+ "dependencies": {
54
+ "bulma": "^1.0.0"
55
+ }
56
+ },
57
+ "node_modules/chokidar": {
58
+ "version": "3.6.0",
59
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
60
+ "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
61
+ "dependencies": {
62
+ "anymatch": "~3.1.2",
63
+ "braces": "~3.0.2",
64
+ "glob-parent": "~5.1.2",
65
+ "is-binary-path": "~2.1.0",
66
+ "is-glob": "~4.0.1",
67
+ "normalize-path": "~3.0.0",
68
+ "readdirp": "~3.6.0"
69
+ },
70
+ "engines": {
71
+ "node": ">= 8.10.0"
72
+ },
73
+ "funding": {
74
+ "url": "https://paulmillr.com/funding/"
75
+ },
76
+ "optionalDependencies": {
77
+ "fsevents": "~2.3.2"
78
+ }
79
+ },
80
+ "node_modules/fill-range": {
81
+ "version": "7.0.1",
82
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
83
+ "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
84
+ "dependencies": {
85
+ "to-regex-range": "^5.0.1"
86
+ },
87
+ "engines": {
88
+ "node": ">=8"
89
+ }
90
+ },
91
+ "node_modules/fsevents": {
92
+ "version": "2.3.3",
93
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
94
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
95
+ "hasInstallScript": true,
96
+ "optional": true,
97
+ "os": [
98
+ "darwin"
99
+ ],
100
+ "engines": {
101
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
102
+ }
103
+ },
104
+ "node_modules/glob-parent": {
105
+ "version": "5.1.2",
106
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
107
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
108
+ "dependencies": {
109
+ "is-glob": "^4.0.1"
110
+ },
111
+ "engines": {
112
+ "node": ">= 6"
113
+ }
114
+ },
115
+ "node_modules/immutable": {
116
+ "version": "4.3.5",
117
+ "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.5.tgz",
118
+ "integrity": "sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw=="
119
+ },
120
+ "node_modules/is-binary-path": {
121
+ "version": "2.1.0",
122
+ "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
123
+ "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
124
+ "dependencies": {
125
+ "binary-extensions": "^2.0.0"
126
+ },
127
+ "engines": {
128
+ "node": ">=8"
129
+ }
130
+ },
131
+ "node_modules/is-extglob": {
132
+ "version": "2.1.1",
133
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
134
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
135
+ "engines": {
136
+ "node": ">=0.10.0"
137
+ }
138
+ },
139
+ "node_modules/is-glob": {
140
+ "version": "4.0.3",
141
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
142
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
143
+ "dependencies": {
144
+ "is-extglob": "^2.1.1"
145
+ },
146
+ "engines": {
147
+ "node": ">=0.10.0"
148
+ }
149
+ },
150
+ "node_modules/is-number": {
151
+ "version": "7.0.0",
152
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
153
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
154
+ "engines": {
155
+ "node": ">=0.12.0"
156
+ }
157
+ },
158
+ "node_modules/normalize-path": {
159
+ "version": "3.0.0",
160
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
161
+ "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
162
+ "engines": {
163
+ "node": ">=0.10.0"
164
+ }
165
+ },
166
+ "node_modules/picomatch": {
167
+ "version": "2.3.1",
168
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
169
+ "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
170
+ "engines": {
171
+ "node": ">=8.6"
172
+ },
173
+ "funding": {
174
+ "url": "https://github.com/sponsors/jonschlinkert"
175
+ }
176
+ },
177
+ "node_modules/readdirp": {
178
+ "version": "3.6.0",
179
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
180
+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
181
+ "dependencies": {
182
+ "picomatch": "^2.2.1"
183
+ },
184
+ "engines": {
185
+ "node": ">=8.10.0"
186
+ }
187
+ },
188
+ "node_modules/sass": {
189
+ "version": "1.76.0",
190
+ "resolved": "https://registry.npmjs.org/sass/-/sass-1.76.0.tgz",
191
+ "integrity": "sha512-nc3LeqvF2FNW5xGF1zxZifdW3ffIz5aBb7I7tSvOoNu7z1RQ6pFt9MBuiPtjgaI62YWrM/txjWlOCFiGtf2xpw==",
192
+ "dependencies": {
193
+ "chokidar": ">=3.0.0 <4.0.0",
194
+ "immutable": "^4.0.0",
195
+ "source-map-js": ">=0.6.2 <2.0.0"
196
+ },
197
+ "bin": {
198
+ "sass": "sass.js"
199
+ },
200
+ "engines": {
201
+ "node": ">=14.0.0"
202
+ }
203
+ },
204
+ "node_modules/source-map-js": {
205
+ "version": "1.2.0",
206
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz",
207
+ "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==",
208
+ "engines": {
209
+ "node": ">=0.10.0"
210
+ }
211
+ },
212
+ "node_modules/to-regex-range": {
213
+ "version": "5.0.1",
214
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
215
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
16
216
  "dependencies": {
17
- "bulma": "^0.9.3"
217
+ "is-number": "^7.0.0"
218
+ },
219
+ "engines": {
220
+ "node": ">=8.0"
18
221
  }
19
222
  }
20
223
  }
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2022 Jeremy Thomas
3
+ Copyright (c) 2023 Jeremy Thomas
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -78,61 +78,65 @@ Browse the [online documentation here.](https://bulma.io/documentation/overview/
78
78
 
79
79
  ## Related projects
80
80
 
81
- | Project | Description |
82
- | ----------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------- |
83
- | [Bulma with Attribute Modules](https://github.com/j5bot/bulma-attribute-selectors) | Adds support for attribute-based selectors |
84
- | [Bulma with Rails](https://github.com/joshuajansen/bulma-rails) | Integrates Bulma with the rails asset pipeline |
85
- | [BulmaRazor](https://github.com/loogn/bulmarazor) | A lightweight component library based on Bulma and Blazor. |
86
- | [Vue Admin (dead)](https://github.com/vue-bulma/vue-admin) | Vue Admin framework powered by Bulma |
87
- | [Bulmaswatch](https://github.com/jenil/bulmaswatch) | Free themes for Bulma |
88
- | [Goldfish (read-only)](https://github.com/Caiyeon/goldfish) | Vault UI with Bulma, Golang, and Vue Admin |
89
- | [ember-bulma](https://github.com/open-tux/ember-bulma) | Ember addon providing a collection of UI components for Bulma |
90
- | [Bloomer](https://bloomer.js.org) | A set of React components for Bulma |
91
- | [React-bulma](https://github.com/kulakowka/react-bulma) | React.js components for Bulma |
92
- | [Buefy](https://buefy.org/) | Lightweight UI components for Vue.js based on Bulma |
93
- | [vue-bulma-components](https://github.com/vouill/vue-bulma-components) | Bulma components for Vue.js with straightforward syntax |
94
- | [BulmaJS](https://github.com/VizuaaLOG/BulmaJS) | Javascript integration for Bulma. Written in ES6 with a data-\* API |
95
- | [Bulma-modal-fx](https://github.com/postare/bulma-modal-fx) | A set of modal window effects with CSS transitions and animations for Bulma |
96
- | [Bulma Stylus](https://github.com/groenroos/bulma-stylus) | Up-to-date 1:1 translation to Stylus |
97
- | [Bulma.styl (read-only)](https://github.com/log1x/bulma.styl) | 1:1 Stylus translation of Bulma 0.6.11 |
98
- | [elm-bulma](https://github.com/surprisetalk/elm-bulma) | Bulma + Elm |
99
- | [elm-bulma-classes](https://github.com/ahstro/elm-bulma-classes) | Bulma classes prepared for usage with Elm |
100
- | [Bulma Customizer](https://bulma-customizer.bstash.io/) | Bulma Customizer &#8211; Create your own **bespoke** Bulma build |
101
- | [Fulma](https://fulma.github.io/Fulma/) | Wrapper around Bulma for [fable-react](https://github.com/fable-compiler/fable-react) |
102
- | [Laravel Enso](https://github.com/laravel-enso/enso) | SPA Admin Panel built with Bulma, VueJS and Laravel |
103
- | [Django Bulma](https://github.com/timonweb/django-bulma) | Integrates Bulma with Django |
104
- | [Bulma Templates](https://github.com/dansup/bulma-templates) | Free Templates for Bulma |
105
- | [React Bulma Components](https://github.com/couds/react-bulma-components) | Another React wrap on React for Bulma.io |
106
- | [purescript-bulma](https://github.com/sectore/purescript-bulma) | PureScript bindings for Bulma |
107
- | [Vue Datatable](https://github.com/laravel-enso/vuedatatable) | Bulma themed datatable based on Vue, Laravel & JSON templates |
108
- | [bulma-fluent](https://mubaidr.github.io/bulma-fluent/) | Fluent Design Theme for Bulma inspired by Microsoft’s Fluent Design System |
109
- | [csskrt-csskrt](https://github.com/4d11/csskrt-csskrt) | Automatically add Bulma classes to HTML files |
110
- | [bulma-pagination-react](https://github.com/hipstersmoothie/bulma-pagination-react) | Bulma pagination as a react component |
111
- | [bulma-helpers](https://github.com/jmaczan/bulma-helpers) | Functional / Atomic CSS classes for Bulma |
112
- | [bulma-swatch-hook](https://github.com/hipstersmoothie/bulma-swatch-hook) | Bulma swatches as a react hook and a component |
113
- | [BulmaWP (read-only)](https://github.com/tomhrtly/BulmaWP) | Starter WordPress theme for Bulma |
114
- | [Ralma](https://github.com/aldi/ralma) | Stateless Ractive.js Components for Bulma |
115
- | [Django Simple Bulma](https://github.com/python-discord/django-simple-bulma) | Lightweight integration of Bulma and Bulma-Extensions for your Django app |
116
- | [rbx](https://dfee.github.io/rbx) | Comprehensive React UI Framework written in TypeScript |
117
- | [Awesome Bulma Templates](https://github.com/aldi/awesome-bulma-templates) | Free real-world Templates built with Bulma |
118
- | [Trunx](http://g14n.info/trunx) | Super Saiyan React components, son of awesome Bulma, implemented in TypeScript |
119
- | [@aybolit/bulma](https://github.com/web-padawan/aybolit/tree/master/packages/bulma) | Web Components library inspired by Bulma and Bulma-extensions |
120
- | [Drulma](https://www.drupal.org/project/drulma) | Drupal theme for Bulma. |
121
- | [Bulrush](https://github.com/textbook/bulrush) | A Bulma-based Python Pelican blog theme |
122
- | [Bulma Variable Export](https://github.com/service-paradis/bulma-variables-export) | Access Bulma Variables in Javascript/Typescript in project using Webpack |
123
- | [Bulmil](https://github.com/gomah/bulmil) | An agnostic UI components library based on Web Components, made with Bulma & Stencil. |
124
- | [Svelte Bulma Components](https://github.com/elcobvg/svelte-bulma-components) | Library of UI components to be used in [Svelte.js](https://svelte.technology/) or standalone. |
125
- | [Bulma Nunjucks Starterkit](https://github.com/benninkcorien/nunjucks-starter-kit) | Starterkit for Nunjucks with Bulma. |
126
- | [Bulma-Social](https://github.com/aldi/bulma-social) | Social Buttons and Colors for Bulma |
127
- | [Divjoy](https://divjoy.com/?kit=bulma) | React codebase generator with Bulma templates |
128
- | [Blazorise](https://github.com/Megabit/Blazorise) | Blazor component library with the support for Bulma CSS framework |
129
- | [Oruga-Bulma](https://github.com/oruga-ui/theme-bulma) | Bulma theme for [Oruga UI](https://oruga.io) |
130
- | [@bulvar/bulma](https://github.com/daniil4udo/bulvar/tree/master/packages/bulma) | Bulma with [CSS Variables](https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties) support |
131
- | [@angular-bulma](https://quinnjr.github.io/angular-bulma) | [Angular](https://angular.io/) directives and components to use in your Bulma projects |
81
+ | Project | Description |
82
+ | ------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------- |
83
+ | [Bulma with Attribute Modules](https://github.com/j5bot/bulma-attribute-selectors) | Adds support for attribute-based selectors |
84
+ | [Bulma with Rails](https://github.com/joshuajansen/bulma-rails) | Integrates Bulma with the rails asset pipeline |
85
+ | [BulmaRazor](https://github.com/loogn/bulmarazor) | A lightweight component library based on Bulma and Blazor. |
86
+ | [Vue Admin (dead)](https://github.com/vue-bulma/vue-admin) | Vue Admin framework powered by Bulma |
87
+ | [Bulmaswatch](https://github.com/jenil/bulmaswatch) | Free themes for Bulma |
88
+ | [Goldfish (read-only)](https://github.com/Caiyeon/goldfish) | Vault UI with Bulma, Golang, and Vue Admin |
89
+ | [ember-bulma](https://github.com/open-tux/ember-bulma) | Ember addon providing a collection of UI components for Bulma |
90
+ | [Bloomer](https://bloomer.js.org) | A set of React components for Bulma |
91
+ | [React-bulma](https://github.com/kulakowka/react-bulma) | React.js components for Bulma |
92
+ | [Buefy](https://buefy.org/) | Lightweight UI components for Vue.js based on Bulma |
93
+ | [vue-bulma-components](https://github.com/vouill/vue-bulma-components) | Bulma components for Vue.js with straightforward syntax |
94
+ | [BulmaJS](https://github.com/VizuaaLOG/BulmaJS) | Javascript integration for Bulma. Written in ES6 with a data-\* API |
95
+ | [Bulma-modal-fx](https://github.com/postare/bulma-modal-fx) | A set of modal window effects with CSS transitions and animations for Bulma |
96
+ | [Bulma Stylus](https://github.com/groenroos/bulma-stylus) | Up-to-date 1:1 translation to Stylus |
97
+ | [Bulma.styl (read-only)](https://github.com/log1x/bulma.styl) | 1:1 Stylus translation of Bulma 0.6.11 |
98
+ | [elm-bulma](https://github.com/surprisetalk/elm-bulma) | Bulma + Elm |
99
+ | [elm-bulma-classes](https://github.com/ahstro/elm-bulma-classes) | Bulma classes prepared for usage with Elm |
100
+ | [Bulma Customizer](https://bulma-customizer.bstash.io/) | Bulma Customizer &#8211; Create your own **bespoke** Bulma build |
101
+ | [Fulma](https://fulma.github.io/Fulma/) | Wrapper around Bulma for [fable-react](https://github.com/fable-compiler/fable-react) |
102
+ | [Laravel Enso](https://github.com/laravel-enso/enso) | SPA Admin Panel built with Bulma, VueJS and Laravel |
103
+ | [Django Bulma](https://github.com/timonweb/django-bulma) | Integrates Bulma with Django |
104
+ | [Bulma Templates](https://github.com/dansup/bulma-templates) | Free Templates for Bulma |
105
+ | [React Bulma Components](https://github.com/couds/react-bulma-components) | Another React wrap on React for Bulma.io |
106
+ | [purescript-bulma](https://github.com/sectore/purescript-bulma) | PureScript bindings for Bulma |
107
+ | [Vue Datatable](https://github.com/laravel-enso/vuedatatable) | Bulma themed datatable based on Vue, Laravel & JSON templates |
108
+ | [bulma-fluent](https://mubaidr.github.io/bulma-fluent/) | Fluent Design Theme for Bulma inspired by Microsoft’s Fluent Design System |
109
+ | [csskrt-csskrt](https://github.com/4d11/csskrt-csskrt) | Automatically add Bulma classes to HTML files |
110
+ | [bulma-pagination-react](https://github.com/hipstersmoothie/bulma-pagination-react) | Bulma pagination as a react component |
111
+ | [bulma-helpers](https://github.com/jmaczan/bulma-helpers) | Functional / Atomic CSS classes for Bulma |
112
+ | [bulma-swatch-hook](https://github.com/hipstersmoothie/bulma-swatch-hook) | Bulma swatches as a react hook and a component |
113
+ | [BulmaWP (read-only)](https://github.com/tomhrtly/BulmaWP) | Starter WordPress theme for Bulma |
114
+ | [Ralma](https://github.com/aldi/ralma) | Stateless Ractive.js Components for Bulma |
115
+ | [Django Simple Bulma](https://github.com/python-discord/django-simple-bulma) | Lightweight integration of Bulma and Bulma-Extensions for your Django app |
116
+ | [rbx](https://dfee.github.io/rbx) | Comprehensive React UI Framework written in TypeScript |
117
+ | [Awesome Bulma Templates](https://github.com/aldi/awesome-bulma-templates) | Free real-world Templates built with Bulma |
118
+ | [Trunx](https://github.com/fibo/trunx) | Super Saiyan React components, son of awesome Bulma |
119
+ | [@aybolit/bulma](https://github.com/web-padawan/aybolit/tree/master/packages/bulma) | Web Components library inspired by Bulma and Bulma-extensions |
120
+ | [Drulma](https://www.drupal.org/project/drulma) | Drupal theme for Bulma. |
121
+ | [Bulrush](https://github.com/textbook/bulrush) | A Bulma-based Python Pelican blog theme |
122
+ | [Bulma Variable Export](https://github.com/service-paradis/bulma-variables-export) | Access Bulma Variables in Javascript/Typescript in project using Webpack |
123
+ | [Bulmil](https://github.com/gomah/bulmil) | An agnostic UI components library based on Web Components, made with Bulma & Stencil. |
124
+ | [Svelte Bulma Components](https://github.com/elcobvg/svelte-bulma-components) | Library of UI components to be used in [Svelte.js](https://svelte.technology/) or standalone. |
125
+ | [Bulma Nunjucks Starterkit](https://github.com/benninkcorien/nunjucks-starter-kit) | Starterkit for Nunjucks with Bulma. |
126
+ | [Bulma-Social](https://github.com/aldi/bulma-social) | Social Buttons and Colors for Bulma |
127
+ | [Divjoy](https://divjoy.com/?kit=bulma) | React codebase generator with Bulma templates |
128
+ | [Blazorise](https://github.com/Megabit/Blazorise) | Blazor component library with the support for Bulma CSS framework |
129
+ | [Oruga-Bulma](https://github.com/oruga-ui/theme-bulma) | Bulma theme for [Oruga UI](https://oruga.io) |
130
+ | [@bulvar/bulma](https://github.com/daniil4udo/bulvar/tree/master/packages/bulma) | Bulma with [CSS Variables](https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties) support |
131
+ | [@angular-bulma](https://quinnjr.github.io/angular-bulma) | [Angular](https://angular.io/) directives and components to use in your Bulma projects |
132
+ | [Bulma CSS Class Completion](https://github.com/eliutdev/bulma-css-class-completion) | CSS class name completion for the HTML class attribute based on Bulma CSS classes. |
133
+ | [Crispy-Bulma](https://github.com/ckrybus/crispy-bulma) | Bulma template pack for django-crispy-forms |
134
+ | [CASE](https://case.app) | CASE is Lightweight Backend-as-a-Service with essential features: DB, Admin panel, API, JS SDK |
135
+ | [Reactive Bulma](https://github.com/NicolasOmar/reactive-bulma) | A component library based on React, Bulma, Typescript and Rollup |
132
136
 
133
137
  ## Copyright and license ![Github](https://img.shields.io/github/license/jgthms/bulma?logo=Github)
134
138
 
135
- Code copyright 2022 Jeremy Thomas. Code released under [the MIT license](https://github.com/jgthms/bulma/blob/master/LICENSE).
139
+ Code copyright 2023 Jeremy Thomas. Code released under [the MIT license](https://github.com/jgthms/bulma/blob/master/LICENSE).
136
140
 
137
141
  [npm-link]: https://www.npmjs.com/package/bulma
138
142
  [awesome-link]: https://github.com/awesome-css-group/awesome-css
@@ -0,0 +1,4 @@
1
+ @charset "utf-8";
2
+
3
+ /*! bulma.io v1.0.0 | MIT License | github.com/jgthms/bulma */
4
+ @use "sass";