beyond_canvas 0.15.0.pre → 0.16.1.pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +0 -6
  3. data/Rakefile +3 -3
  4. data/app/assets/javascripts/beyond_canvas/base.js +248 -87
  5. data/app/assets/stylesheets/beyond_canvas/settings/_breakpoints.scss +6 -6
  6. data/app/assets/stylesheets/beyond_canvas/settings/_variables.scss +13 -13
  7. data/app/controllers/beyond_canvas/authentications_controller.rb +62 -0
  8. data/app/controllers/concerns/beyond_canvas/authentication.rb +24 -0
  9. data/app/controllers/concerns/beyond_canvas/request_validation.rb +1 -1
  10. data/app/controllers/concerns/beyond_canvas/resource_management.rb +33 -0
  11. data/app/javascript/beyond_canvas/base.js +3 -6
  12. data/app/javascript/beyond_canvas/initializers/buttons.js +21 -39
  13. data/app/javascript/beyond_canvas/initializers/flash.js +5 -14
  14. data/app/javascript/beyond_canvas/initializers/functions.js +41 -0
  15. data/app/javascript/beyond_canvas/initializers/inputs.js +3 -8
  16. data/app/views/beyond_canvas/authentications/new.html.erb +18 -0
  17. data/config/locales/en.yml +4 -0
  18. data/config/routes.rb +6 -0
  19. data/lib/beyond_canvas.rb +18 -2
  20. data/lib/beyond_canvas/configuration.rb +4 -1
  21. data/lib/beyond_canvas/engine.rb +4 -0
  22. data/lib/beyond_canvas/models/authentication.rb +66 -0
  23. data/lib/beyond_canvas/models/shop.rb +28 -0
  24. data/lib/beyond_canvas/models/utils.rb +55 -0
  25. data/lib/beyond_canvas/parameter_sanitizer.rb +43 -0
  26. data/lib/beyond_canvas/rails/routes.rb +21 -0
  27. data/lib/beyond_canvas/version.rb +1 -1
  28. data/lib/generators/beyond_canvas/auth_model/auth_model_generator.rb +50 -0
  29. data/lib/generators/beyond_canvas/auth_model/templates/migration.erb +20 -0
  30. data/lib/generators/beyond_canvas/auth_model/templates/model.erb +5 -0
  31. data/lib/generators/beyond_canvas/controller/controller_generator.rb +20 -0
  32. data/lib/generators/beyond_canvas/controller/templates/controller.erb +37 -0
  33. data/lib/generators/beyond_canvas/custom_styles/templates/beyond_canvas_custom_styles.scss +153 -0
  34. data/lib/generators/beyond_canvas/install/install_generator.rb +15 -5
  35. data/lib/generators/beyond_canvas/install/templates/beyond_canvas.rb.erb +11 -0
  36. data/lib/generators/beyond_canvas/views/views_generator.rb +19 -0
  37. metadata +56 -11
  38. data/lib/generators/beyond_canvas/custom_styles/templates/beyond_canvas_custom_styles.sass +0 -123
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d367f6132c52453a85ad880605b90ba30811ef32da9bc28dd1f685e8554c2e41
4
- data.tar.gz: 91a7c9f2f15564fe0752aeed2b682f938d595b82e48df9b1148e72dbe3429b98
3
+ metadata.gz: 3ae7a444d16c34398e75a22c36d1e55a7719992cec9189ddfdaa69ed7a0fbd9b
4
+ data.tar.gz: e3ec8d991899a6726577cf97f15986c047600d63e71311f94a2e2c28f537d26a
5
5
  SHA512:
6
- metadata.gz: de56ea97d47081b565a4ba795ab8ee105ba9faf0ff6cbb6e42f852ef160b68804885714583c5d7c3090bdf720a80d53d6cc028664368a81abd1f5a8839d8df13
7
- data.tar.gz: 12cd7fb3261b4fce0f620cc8179ff160ed17f62f82eae55a67e6316986b90c842dcb4ed15c8c68a54108bd4e45ff5614da3d08918c994f204e6c8a98dd9078f8
6
+ metadata.gz: 381c257b4203a454d23161e21df2a5ac26aa69cc056b3ef082a9ce88aa761349eae5b0660c0fdbc5290e4844f388aae5744519bcb73ac2ef4b051182337da676
7
+ data.tar.gz: 97b2bc12fdbc661ce8e2abcdf2984ac85d8f6109dff9c72ee1309e5a9ba565c68e5115ad05d5d0f3a5ce25bd607ef1e3f6f66ed5c5205b8f1034736c4e841294
data/README.md CHANGED
@@ -37,12 +37,6 @@
37
37
  //= require beyond_canvas
38
38
  ```
39
39
 
40
- 1. Mount the engine in your routes file:
41
-
42
- ```ruby
43
- mount BeyondCanvas::Engine => "/<your-mounting-path>"
44
- ```
45
-
46
40
  1. Run the generator:
47
41
 
48
42
  ```bash
data/Rakefile CHANGED
@@ -35,13 +35,13 @@ require 'colorize'
35
35
  namespace :release do
36
36
  desc 'Update beyond_canvas_custom_styles.sass generator template to latest version'
37
37
  task :custom_styles do |_task, _args|
38
- ORIG = 'app/assets/stylesheets/beyond_canvas/settings/_variables.sass'
39
- DEST = 'lib/generators/templates/beyond_canvas_custom_styles.sass'
38
+ ORIG = 'app/assets/stylesheets/beyond_canvas/settings/_variables.scss'
39
+ DEST = 'lib/generators/beyond_canvas/custom_styles/templates/beyond_canvas_custom_styles.scss'
40
40
 
41
41
  dest_file = File.open(DEST, 'w')
42
42
 
43
43
  File.open(ORIG, 'r').each do |line|
44
- next if line.include?('!global')
44
+ next if line.start_with?('$') && !line.include?('!default')
45
45
 
46
46
  line.start_with?('$') ? dest_file.print('// ' + line.gsub(' !default', '')) : dest_file.print(line)
47
47
  end
@@ -1,94 +1,255 @@
1
- /*
2
- * Warning: This file is auto-generated, do not modify. Instead, make your changes in 'app/javascript/beyond_canvas/' and run `yarn build`
1
+ /*!
2
+ *
3
+ * Warning: This file is auto-generated, do not modify. Instead, make your changes in 'app/javascript/beyond_canvas/' and run `yarn build`
4
+ *
5
+ * //= require jquery3
6
+ * //= require_self
7
+ *
3
8
  */
4
- //= require jquery3
5
- //= require jquery_ujs
6
- //= require_self
7
-
8
- (function(factory) {
9
- typeof define === "function" && define.amd ? define([ "jquery", "jquery-ujs" ], factory) : factory();
10
- })(function() {
11
- "use strict";
12
- var SPINNER_ANIMATION_TIMEOUT = 125;
13
- (function($) {
14
- var onDOMReady = function onDOMReady() {
15
- $('button[class^="button"]').each(function() {
16
- var button = $(this);
17
- button.width(button.width());
18
- button.data("oldWidth", button.width());
19
- button.prepend('\n <div class="spinner">\n <div class="bounce1"></div>\n <div class="bounce2"></div>\n <div class="bounce3"></div>\n </div>');
20
- button.closest("form").on("ajax:success", function() {
21
- hideSpinner(button);
22
- enableActionElements();
23
- }).on("ajax:error", function() {
24
- hideSpinner(button);
25
- enableActionElements();
26
- });
27
- });
28
- };
29
- $(document).on("click", '[class^="button"]', function() {
30
- disableActionElements();
31
- showSpinner($(this));
32
- });
33
- $(document).ready(onDOMReady).on("ready page:load turbolinks:load", onDOMReady);
34
- })(jQuery);
35
- function showSpinner(button) {
36
- button.width(button.width() + $(".spinner").outerWidth(true));
37
- setTimeout(function() {
38
- button.find(".spinner").css("display", "flex");
39
- }, SPINNER_ANIMATION_TIMEOUT);
40
- }
41
- function hideSpinner(button) {
42
- setTimeout(function() {
43
- button.find(".spinner").hide();
44
- button.width(button.data("oldWidth"));
9
+ (function(e, a) { for(var i in a) e[i] = a[i]; }(window, /******/ (function(modules) { // webpackBootstrap
10
+ /******/ // The module cache
11
+ /******/ var installedModules = {};
12
+ /******/
13
+ /******/ // The require function
14
+ /******/ function __webpack_require__(moduleId) {
15
+ /******/
16
+ /******/ // Check if module is in cache
17
+ /******/ if(installedModules[moduleId]) {
18
+ /******/ return installedModules[moduleId].exports;
19
+ /******/ }
20
+ /******/ // Create a new module (and put it into the cache)
21
+ /******/ var module = installedModules[moduleId] = {
22
+ /******/ i: moduleId,
23
+ /******/ l: false,
24
+ /******/ exports: {}
25
+ /******/ };
26
+ /******/
27
+ /******/ // Execute the module function
28
+ /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
29
+ /******/
30
+ /******/ // Flag the module as loaded
31
+ /******/ module.l = true;
32
+ /******/
33
+ /******/ // Return the exports of the module
34
+ /******/ return module.exports;
35
+ /******/ }
36
+ /******/
37
+ /******/
38
+ /******/ // expose the modules object (__webpack_modules__)
39
+ /******/ __webpack_require__.m = modules;
40
+ /******/
41
+ /******/ // expose the module cache
42
+ /******/ __webpack_require__.c = installedModules;
43
+ /******/
44
+ /******/ // define getter function for harmony exports
45
+ /******/ __webpack_require__.d = function(exports, name, getter) {
46
+ /******/ if(!__webpack_require__.o(exports, name)) {
47
+ /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
48
+ /******/ }
49
+ /******/ };
50
+ /******/
51
+ /******/ // define __esModule on exports
52
+ /******/ __webpack_require__.r = function(exports) {
53
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
54
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
55
+ /******/ }
56
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
57
+ /******/ };
58
+ /******/
59
+ /******/ // create a fake namespace object
60
+ /******/ // mode & 1: value is a module id, require it
61
+ /******/ // mode & 2: merge all properties of value into the ns
62
+ /******/ // mode & 4: return value when already ns object
63
+ /******/ // mode & 8|1: behave like require
64
+ /******/ __webpack_require__.t = function(value, mode) {
65
+ /******/ if(mode & 1) value = __webpack_require__(value);
66
+ /******/ if(mode & 8) return value;
67
+ /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
68
+ /******/ var ns = Object.create(null);
69
+ /******/ __webpack_require__.r(ns);
70
+ /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
71
+ /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
72
+ /******/ return ns;
73
+ /******/ };
74
+ /******/
75
+ /******/ // getDefaultExport function for compatibility with non-harmony modules
76
+ /******/ __webpack_require__.n = function(module) {
77
+ /******/ var getter = module && module.__esModule ?
78
+ /******/ function getDefault() { return module['default']; } :
79
+ /******/ function getModuleExports() { return module; };
80
+ /******/ __webpack_require__.d(getter, 'a', getter);
81
+ /******/ return getter;
82
+ /******/ };
83
+ /******/
84
+ /******/ // Object.prototype.hasOwnProperty.call
85
+ /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
86
+ /******/
87
+ /******/ // __webpack_public_path__
88
+ /******/ __webpack_require__.p = "";
89
+ /******/
90
+ /******/
91
+ /******/ // Load entry module and return exports
92
+ /******/ return __webpack_require__(__webpack_require__.s = 1);
93
+ /******/ })
94
+ /************************************************************************/
95
+ /******/ ([
96
+ /* 0 */
97
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
98
+
99
+ "use strict";
100
+ __webpack_require__.r(__webpack_exports__);
101
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "showSpinner", function() { return showSpinner; });
102
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hideSpinner", function() { return hideSpinner; });
103
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "disableActionElements", function() { return disableActionElements; });
104
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "enableActionElements", function() { return enableActionElements; });
105
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "closeAlert", function() { return closeAlert; });
106
+ var SPINNER_ANIMATION_TIMEOUT = 125;
107
+ function showSpinner(button) {
108
+ // Adjust the width of the button
109
+ button.width(button.width() + $('.spinner').outerWidth(true)); // Show the spinner
110
+
111
+ setTimeout(function () {
112
+ button.find('.spinner').css('display', 'flex');
113
+ }, SPINNER_ANIMATION_TIMEOUT);
114
+ }
115
+ function hideSpinner() {
116
+ $('button[class^="button"]').each(function (_, button) {
117
+ setTimeout(function () {
118
+ // Hide the spinner
119
+ $(button).find('.spinner').hide(); // Adjust the width of the button
120
+
121
+ $(button).width($(button).data('oldWidth'));
45
122
  }, SPINNER_ANIMATION_TIMEOUT);
46
- }
47
- function disableActionElements() {
48
- $('a, input[type="submit"], input[type="button"], input[type="reset"], button').each(function() {
49
- $(this).addClass("actions--disabled");
123
+ });
124
+ }
125
+ function disableActionElements() {
126
+ $('a, input[type="submit"], input[type="button"], input[type="reset"], button').each(function (_, button) {
127
+ $(button).addClass('actions--disabled');
128
+ });
129
+ }
130
+ function enableActionElements() {
131
+ $('a, input[type="submit"], input[type="button"], input[type="reset"], button').each(function (_, button) {
132
+ $(button).removeClass('actions--disabled');
133
+ });
134
+ }
135
+ function closeAlert() {
136
+ $('.flash').removeClass('flash--shown').delay(700).queue(function () {
137
+ $(this).remove();
138
+ });
139
+ }
140
+
141
+ /***/ }),
142
+ /* 1 */
143
+ /***/ (function(module, exports, __webpack_require__) {
144
+
145
+ __webpack_require__(3);
146
+ module.exports = __webpack_require__(0);
147
+
148
+
149
+ /***/ }),
150
+ /* 2 */
151
+ /***/ (function(module, exports) {
152
+
153
+ (function ($) {
154
+ var onDOMReady = function onDOMReady() {
155
+ $('input[type="file"]').each(function () {
156
+ var $input = $(this),
157
+ $label = $(".input__file__text." + $input.attr('id')),
158
+ labelVal = $label.html();
159
+ $input.on('change', function (e) {
160
+ var fileName = '';
161
+ if (this.files && this.files.length > 1) fileName = (this.getAttribute('data-multiple-caption') || '').replace('{count}', this.files.length);else if (e.target.value) fileName = e.target.value.split('\\').pop();
162
+ if (fileName) $label.html("<svg class=\"input__file__icon\" xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\"><path d=\"M15 2v5h5v15h-16v-20h11zm1-2h-14v24h20v-18l-6-6z\"/></svg>" + fileName);else $label.html(labelVal);
163
+ }); // Firefox bug fix
164
+
165
+ $input.on('focus', function () {
166
+ $input.addClass('has-focus');
167
+ }).on('blur', function () {
168
+ $input.removeClass('has-focus');
169
+ });
50
170
  });
51
- }
52
- function enableActionElements() {
53
- $('a, input[type="submit"], input[type="button"], input[type="reset"], button').each(function() {
54
- $(this).removeClass("actions--disabled");
171
+ };
172
+
173
+ $(document).on('ready page:load turbolinks:load', onDOMReady);
174
+ })(jQuery);
175
+
176
+ /***/ }),
177
+ /* 3 */
178
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
179
+
180
+ "use strict";
181
+ // ESM COMPAT FLAG
182
+ __webpack_require__.r(__webpack_exports__);
183
+
184
+ // EXTERNAL MODULE: ./app/javascript/beyond_canvas/initializers/functions.js
185
+ var functions = __webpack_require__(0);
186
+
187
+ // CONCATENATED MODULE: ./app/javascript/beyond_canvas/initializers/buttons.js
188
+
189
+
190
+ (function ($) {
191
+ var onDOMReady = function onDOMReady() {
192
+ var inputs = $('input, textarea, select').not(':input[type=button], :input[type=submit], :input[type=reset]');
193
+ inputs.each(function () {
194
+ var input = $(this);
195
+ input.bind('invalid', function (e) {
196
+ if ($(input).is(':hidden')) {
197
+ e.preventDefault();
198
+ }
199
+
200
+ Object(functions["hideSpinner"])();
201
+ Object(functions["enableActionElements"])();
202
+ });
55
203
  });
56
- }
57
- (function($) {
58
- var onDOMReady = function onDOMReady() {
59
- $(".flash").each(function() {
60
- $(this).css("right", -$(this).width() + "px");
204
+ $('button[class^="button"]').each(function () {
205
+ var button = $(this); // Add width attribute and save old width
206
+
207
+ button.width(button.width());
208
+ button.data('oldWidth', button.width()); // Add the spinner
209
+
210
+ button.prepend("\n <div class=\"spinner\">\n <div class=\"bounce1\"></div>\n <div class=\"bounce2\"></div>\n <div class=\"bounce3\"></div>\n </div>"); // Bind ajax:success and ajax:error to the form the button belongs to
211
+
212
+ button.closest('form').on('ajax:success', function () {
213
+ Object(functions["hideSpinner"])();
214
+ Object(functions["enableActionElements"])();
215
+ }).on('ajax:error', function () {
216
+ Object(functions["hideSpinner"])();
217
+ Object(functions["enableActionElements"])();
61
218
  });
62
- setTimeout(function() {
63
- $(".flash").addClass("flash--shown");
64
- }, 100);
65
- };
66
- $(document).on("click", ".flash", function() {
67
- closeAlert();
68
219
  });
69
- $(document).ready(onDOMReady).on("ready page:load turbolinks:load", onDOMReady);
70
- })(jQuery);
71
- function closeAlert() {
72
- $(".flash").removeClass("flash--shown").delay(700).queue(function() {
73
- $(this).remove();
220
+ };
221
+
222
+ $(document).on('click', '[class^="button"]', function () {
223
+ Object(functions["disableActionElements"])();
224
+ Object(functions["showSpinner"])($(this));
225
+ });
226
+ $(document).on('ready page:load turbolinks:load', onDOMReady);
227
+ })(jQuery);
228
+ // CONCATENATED MODULE: ./app/javascript/beyond_canvas/initializers/flash.js
229
+
230
+
231
+ (function ($) {
232
+ var onDOMReady = function onDOMReady() {
233
+ $('.flash').each(function () {
234
+ $(this).css('right', -$(this).width() + 'px');
74
235
  });
75
- }
76
- (function($) {
77
- var onDOMReady = function onDOMReady() {
78
- $('input[type="file"]').each(function() {
79
- var $input = $(this), $label = $(".input__file__text." + $input.attr("id")), labelVal = $label.html();
80
- $input.on("change", function(e) {
81
- var fileName = "";
82
- if (this.files && this.files.length > 1) fileName = (this.getAttribute("data-multiple-caption") || "").replace("{count}", this.files.length); else if (e.target.value) fileName = e.target.value.split("\\").pop();
83
- if (fileName) $label.html('<svg class="input__file__icon" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M15 2v5h5v15h-16v-20h11zm1-2h-14v24h20v-18l-6-6z"/></svg>' + fileName); else $label.html(labelVal);
84
- });
85
- $input.on("focus", function() {
86
- $input.addClass("has-focus");
87
- }).on("blur", function() {
88
- $input.removeClass("has-focus");
89
- });
90
- });
91
- };
92
- $(document).ready(onDOMReady).on("ready page:load turbolinks:load", onDOMReady);
93
- })(jQuery);
94
- });
236
+ setTimeout(function () {
237
+ $('.flash').addClass('flash--shown');
238
+ }, 100);
239
+ };
240
+
241
+ $(document).on('click', '.flash', function () {
242
+ Object(functions["closeAlert"])();
243
+ });
244
+ $(document).on('ready page:load turbolinks:load', onDOMReady);
245
+ })(jQuery);
246
+ // EXTERNAL MODULE: ./app/javascript/beyond_canvas/initializers/inputs.js
247
+ var initializers_inputs = __webpack_require__(2);
248
+
249
+ // CONCATENATED MODULE: ./app/javascript/beyond_canvas/base.js
250
+
251
+
252
+
253
+
254
+ /***/ })
255
+ /******/ ])));
@@ -1,6 +1,6 @@
1
- $mobile-s: 321px !global;
2
- $mobile-m: 376px !global;
3
- $mobile-l: 426px !global;
4
- $tablet: 769px !global;
5
- $laptop: 1025px !global;
6
- $laptop-l: 1441px !global;
1
+ $mobile-s: 321px;
2
+ $mobile-m: 376px;
3
+ $mobile-l: 426px;
4
+ $tablet: 769px;
5
+ $laptop: 1025px;
6
+ $laptop-l: 1441px;
@@ -2,8 +2,8 @@
2
2
  // Colors
3
3
  // ************************************************************
4
4
 
5
- $white: rgb(255, 255, 255) !global;
6
- $black: rgb(0, 0, 0) !global;
5
+ $white: rgb(255, 255, 255);
6
+ $black: rgb(0, 0, 0);
7
7
  $palette-primary: rgb(78, 183, 168) !default;
8
8
  $palette-secondary: rgb(28, 53, 69) !default;
9
9
  $palette-cancel: rgb(153, 153, 153) !default;
@@ -14,23 +14,23 @@ $palette-danger: rgb(218, 60, 60) !default;
14
14
  // ************************************************************
15
15
 
16
16
  $main-background: rgb(233, 232, 220) !default;
17
- $main-transition: 0.125s ease-in !global;
17
+ $main-transition: 0.125s ease-in;
18
18
 
19
19
  // ************************************************************
20
20
  // Typography
21
21
  // ************************************************************
22
22
 
23
- $main-font-family: '-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif' !global;
23
+ $main-font-family: '-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif';
24
24
  $main-color: rgb(62, 62, 62) !default;
25
- $main-line-height: 1.5 !global;
26
- $main-font-size: 14px !global;
25
+ $main-line-height: 1.5;
26
+ $main-font-size: 14px;
27
27
 
28
28
  // ************************************************************
29
29
  // Headlines
30
30
  // ************************************************************
31
31
 
32
32
  $headline-color: rgb(122, 118, 76) !default;
33
- $headline-line-height: 1 !global;
33
+ $headline-line-height: 1;
34
34
 
35
35
  // ************************************************************
36
36
  // Links
@@ -55,8 +55,8 @@ $button-danger-color: $white !default;
55
55
 
56
56
  $button-border-radius: 3px !default;
57
57
  $button-box-shadow: true !default;
58
- $button-font-weight: 700 !global;
59
- $button-padding: 6px 12px 7px !global;
58
+ $button-font-weight: 700;
59
+ $button-padding: 6px 12px 7px;
60
60
 
61
61
  // ************************************************************
62
62
  // Cards
@@ -64,17 +64,17 @@ $button-padding: 6px 12px 7px !global;
64
64
 
65
65
  $card-border-radius: 3px !default;
66
66
  $card-box-shadow: 0 2px 7px rgba($black, 0.2) !default;
67
- $card-padding: 40px !global;
68
- $card-margin: 30px !global;
67
+ $card-padding: 40px;
68
+ $card-margin: 30px;
69
69
  $card-separator-color: rgb(222, 222, 222) !default;
70
- $card-separator-spacing: 50px !global;
70
+ $card-separator-spacing: 50px;
71
71
  $card-title-color: rgb(247, 133, 96) !default;
72
72
 
73
73
  // ************************************************************
74
74
  // Containers
75
75
  // ************************************************************
76
76
 
77
- $container-spacing: 30px !global;
77
+ $container-spacing: 30px;
78
78
 
79
79
  // ************************************************************
80
80
  // Labels