@rypen-dev/shared-components 5.0.18 → 5.0.20

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": "@rypen-dev/shared-components",
3
3
  "description": "Shared styles and Vuejs ui components for Rypen projects.",
4
- "version": "5.0.18",
4
+ "version": "5.0.20",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {
7
7
  "build": "webpack --config ./webpack.config.js",
@@ -58,7 +58,13 @@ $price-color: $secondary-alt !default;
58
58
  $headline-accent-color: $tertiary-alt !default;
59
59
  $headline-accent-color-alt: $warning !default;
60
60
  $headline-accent-color-reversed: $white !default;
61
+
61
62
  $headline-divider-border-color: $medium-gray !default;
63
+ $headline-divider-bg-color: transparent !default;
64
+ $headline-divider-color: $text-gray !default;
65
+ $headline-divider-reversed-color: $white !default;
66
+ $headline-divider-padding: 0 !default;
67
+
62
68
  $headline-small-color: $text-gray !default;
63
69
 
64
70
  $navigation-link-color: $primary !default;
@@ -11,7 +11,8 @@
11
11
  }
12
12
 
13
13
  .grid-container {
14
- .loader {
14
+ .loader,
15
+ .generic-loader {
15
16
  padding-top: 36px;
16
17
  }
17
18
  }
@@ -192,8 +192,11 @@
192
192
  font-size: 1.125rem;
193
193
  font-weight: normal;
194
194
 
195
- svg {
196
- width: 80px;
195
+ svg,
196
+ img {
197
+ width: auto;
198
+ height: 68px;
199
+ vertical-align: middle;
197
200
  }
198
201
  }
199
202
 
@@ -229,19 +229,21 @@ h5 {
229
229
  line-height: 1.2;
230
230
  font-weight: 500;
231
231
  letter-spacing: 1px;
232
- color: $text-gray;
233
232
  margin-bottom: 15px;
233
+ background-color: $headline-divider-bg-color;
234
+ color: $headline-divider-color;
235
+ padding: $headline-divider-padding;
234
236
 
235
237
  &.inverse {
236
- background-color: $text-gray;
237
- color: $white;
238
+ background-color: $headline-divider-color;
239
+ color: $headline-divider-reversed-color;
238
240
  padding: 0.25rem 0.5rem;
239
241
  }
240
242
 
241
243
  &.lite {
242
244
  font-size: 0.875rem;
243
245
  padding-bottom: 0.25rem;
244
- border-bottom: solid 2px $text-gray;
246
+ border-bottom: solid 2px $headline-divider-color;
245
247
  margin-bottom: 0.25rem;
246
248
  }
247
249