sovereign 1.0.0b126__py3-none-any.whl → 1.0.0b127.post6__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of sovereign might be problematic. Click here for more details.

@@ -1,27 +1,33 @@
1
- @charset "utf-8";
2
-
3
- // Import a Google Font
4
- @import url('https://fonts.googleapis.com/css?family=Nunito:400,700');
1
+ @use "bulma/sass/utilities" with (
2
+ $family-primary: '"Nunito", sans-serif',
3
+ $primary: #433fca,
4
+ $link: #6c90ec,
5
+ );
5
6
 
6
7
  // Update Bulma's global variables
7
8
  $family-sans-serif: "Nunito", sans-serif;
8
- $primary: #433fca;
9
- $link: #6c90ec;
10
9
 
11
10
  // Force the navbar menu to not collapse
12
11
  $desktop: 1px;
13
12
  $body-background-color: rgb(250, 250, 250);
14
13
 
15
14
  // Import only what you need from Bulma
16
- @import "../../../../node_modules/bulma/sass/base/_all.sass";
17
- @import "../../../../node_modules/bulma/sass/form/_all.sass";
18
- @import "../../../../node_modules/bulma/sass/utilities/_all.sass";
19
- @import "../../../../node_modules/bulma/sass/helpers/_all.sass";
20
- @import "../../../../node_modules/bulma/sass/elements/button.sass";
21
- @import "../../../../node_modules/bulma/sass/elements/title.sass";
22
- @import "../../../../node_modules/bulma/sass/elements/content.sass";
23
- @import "../../../../node_modules/bulma/sass/components/navbar.sass";
24
- @import "../../../../node_modules/bulma/sass/components/dropdown.sass";
25
- @import "../../../../node_modules/bulma/sass/components/panel.sass";
26
- @import "../../../../node_modules/bulma/sass/grid/columns.sass";
27
- @import "../../../../node_modules/bulma/bulma.sass";
15
+ @forward "bulma/sass/base";
16
+ @forward "bulma/sass/elements/tag";
17
+ @forward "bulma/sass/elements/notification";
18
+ @forward "bulma/sass/elements/button";
19
+ @forward "bulma/sass/elements/content";
20
+ @forward "bulma/sass/elements/title";
21
+ @forward "bulma/sass/components/navbar";
22
+ @forward "bulma/sass/components/panel";
23
+ @forward "bulma/sass/components/pagination";
24
+ @forward "bulma/sass/components/dropdown";
25
+ @forward "bulma/sass/grid/columns";
26
+ @forward "bulma/sass/form";
27
+ @forward "bulma/sass/helpers";
28
+ @forward "bulma/sass/utilities";
29
+
30
+ @forward "bulma/sass/themes";
31
+
32
+ // Import a Google Font
33
+ @import url('https://fonts.googleapis.com/css?family=Nunito:400,700');