@openeventkit/event-site 2.0.27 → 2.0.29

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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@openeventkit/event-site",
3
3
  "description": "Event Site",
4
- "version": "2.0.27",
4
+ "version": "2.0.29",
5
5
  "author": "Tipit LLC",
6
6
  "dependencies": {
7
7
  "@mui/base": "^5.0.0-alpha.114",
@@ -75,7 +75,7 @@
75
75
  "netlify-cms-app": "^2.15.72",
76
76
  "netlify-cms-lib-widgets": "^1.8.0",
77
77
  "node-sass-utils": "^1.1.3",
78
- "openstack-uicore-foundation": "^4.1.41",
78
+ "openstack-uicore-foundation": "4.1.42",
79
79
  "path-browserify": "^1.0.1",
80
80
  "prop-types": "^15.6.0",
81
81
  "react": "^18.2.0",
@@ -117,7 +117,7 @@
117
117
  "stream-browserify": "^3.0.0",
118
118
  "stream-chat": "^2.7.2",
119
119
  "stream-chat-react": "3.1.7",
120
- "summit-registration-lite": "5.0.2",
120
+ "summit-registration-lite": "5.0.3",
121
121
  "superagent": "8.0.9",
122
122
  "sweetalert2": "^9.17.0",
123
123
  "upcoming-events-widget": "3.0.1",
@@ -0,0 +1 @@
1
+ {}
@@ -1,13 +1,14 @@
1
1
  @charset "utf-8";
2
2
  @import "bulma/sass/utilities/_all.sass";
3
3
  @import 'colors.scss';
4
+ @import "fonts";
4
5
 
5
6
  $footer-background-color: var(--color-primary) !important;
6
7
  $footer-color: var(--color-text-light) !important;
7
8
  $footer-padding: 2rem !important;
8
9
 
9
- $font-family-base: 'Nunito Sans', sans-serif;
10
- $family-sans-serif: 'Nunito Sans', sans-serif;
10
+ $font-family-base: var(--font_family);
11
+ $family-sans-serif: var(--font_family);
11
12
 
12
13
  @import "bulma/sass/base/_all.sass";
13
14
  @import "bulma/sass/components/modal.sass";
@@ -1,5 +1,9 @@
1
1
  $font-family: 'Nunito Sans', sans-serif;
2
2
 
3
+ :root {
4
+ --font_family: #{$font-family};
5
+ }
6
+
3
7
  %font-regular {
4
8
  font-family: 'Nunito Sans', sans-serif;
5
9
  font-weight: 400;
@@ -1,5 +1,6 @@
1
1
  @import "./fonts";
2
2
  @import "colors";
3
+ @import "fonts";
3
4
 
4
5
  %button-big {
5
6
  border-radius: 4px;
@@ -205,4 +206,11 @@
205
206
  padding: 0;
206
207
  height: 100%;
207
208
  @extend %body_theme
209
+ }
210
+
211
+ %body_fonts{
212
+ font-family: var(--font_family) !important;
213
+ h1, h2, h3, h4, h5, p, b, span, div, a {
214
+ font-family: var(--font_family) !important;
215
+ }
208
216
  }
@@ -4,7 +4,7 @@
4
4
 
5
5
  html,
6
6
  body {
7
- font-family: $font-family !important;
7
+ @extend %body_fonts;
8
8
  @extend %body_base;
9
9
  }
10
10