@shift72/core-template 0.6.0 → 1.0.0-alpha.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (76) hide show
  1. package/.github/pull_request_template.md +47 -0
  2. package/.github/workflows/node.js.yml +1 -1
  3. package/CHANGELOG.md +27 -1
  4. package/kibble.json +2 -2
  5. package/package.json +1 -1
  6. package/site/ar_LB.all.json +41 -19
  7. package/site/ca_ES.all.json +33 -19
  8. package/site/da_DK.all.json +33 -19
  9. package/site/de_DE.all.json +33 -19
  10. package/site/el_EL.all.json +33 -19
  11. package/site/en_AU.all.json +17 -3
  12. package/site/es_ES.all.json +33 -19
  13. package/site/es_MX.all.json +30 -16
  14. package/site/et_ET.all.json +33 -19
  15. package/site/fi_FI.all.json +33 -19
  16. package/site/fr_FR.all.json +33 -19
  17. package/site/hr_HR.all.json +35 -19
  18. package/site/hu_HU.all.json +33 -19
  19. package/site/it_IT.all.json +33 -19
  20. package/site/ja_JP.all.json +31 -19
  21. package/site/lt_LT.all.json +37 -19
  22. package/site/nl_BE.all.json +32 -18
  23. package/site/no_NO.all.json +33 -19
  24. package/site/pl_PL.all.json +37 -19
  25. package/site/pt_BR.all.json +33 -19
  26. package/site/pt_PT.all.json +33 -19
  27. package/site/ru_RU.all.json +43 -25
  28. package/site/sr_SR.all.json +35 -19
  29. package/site/static/js/main.js +1 -1
  30. package/site/static/scripts/main.js.map +1 -1
  31. package/site/styles/_buttons.scss +32 -27
  32. package/site/styles/_can-be-watched-button.scss +0 -20
  33. package/site/styles/_carousel.scss +125 -307
  34. package/site/styles/_collections.scss +6 -11
  35. package/site/styles/_cta-buttons.scss +262 -0
  36. package/site/styles/_forms.scss +1 -2
  37. package/site/styles/_icons.scss +3 -1
  38. package/site/styles/_legacy.scss +1 -43
  39. package/site/styles/_meta-detail.scss +20 -194
  40. package/site/styles/_meta-item-tagline.scss +33 -0
  41. package/site/styles/_meta-item.scss +0 -4
  42. package/site/styles/_meta-sub-item.scss +116 -0
  43. package/site/styles/_mixins.scss +45 -0
  44. package/site/styles/_nav.scss +1 -1
  45. package/site/styles/_pages.scss +4 -13
  46. package/site/styles/_plans.scss +14 -0
  47. package/site/styles/_shift72.scss +4 -0
  48. package/site/styles/_variables.scss +2 -4
  49. package/site/styles/main.scss +2 -1
  50. package/site/templates/bundle/item.jet +2 -4
  51. package/site/templates/collection/carousel/carousel.jet +27 -0
  52. package/site/templates/collection/carousel/item/image.jet +5 -0
  53. package/site/templates/collection/carousel/item/synopsis.jet +5 -0
  54. package/site/templates/collection/carousel/item/tagline.jet +7 -0
  55. package/site/templates/collection/carousel/item/title.jet +3 -0
  56. package/site/templates/collection/carousel/item.jet +41 -0
  57. package/site/templates/collection/carousel/pagination.jet +9 -0
  58. package/site/templates/collection/page_collection.jet +2 -2
  59. package/site/templates/common/cta_buttons.jet +70 -0
  60. package/site/templates/common/social-media-buttons.jet +2 -2
  61. package/site/templates/film/item.jet +6 -16
  62. package/site/templates/items/sub_item.jet +22 -0
  63. package/site/templates/items/tagline.jet +2 -2
  64. package/site/templates/page/homepage.jet +2 -3
  65. package/site/templates/tv/detail.jet +10 -18
  66. package/site/tr_TR.all.json +33 -19
  67. package/site/uk_UA.all.json +37 -19
  68. package/site/zh_TW.all.json +31 -19
  69. package/site/styles/_homepage.scss +0 -3
  70. package/site/templates/bundle/buttons.jet +0 -6
  71. package/site/templates/bundle/extras.jet +0 -13
  72. package/site/templates/collection/carousel.jet +0 -27
  73. package/site/templates/collection/carousel_item.jet +0 -68
  74. package/site/templates/items/bonus_item.jet +0 -23
  75. package/site/templates/items/featured_item.jet +0 -61
  76. package/site/templates/tv/episode.jet +0 -21
@@ -0,0 +1,262 @@
1
+ /* stylelint-disable selector-max-compound-selectors, max-nesting-depth */
2
+ .cta-buttons {
3
+ display: grid;
4
+ gap: 16px;
5
+ margin-bottom: 8px;
6
+
7
+ @include media-breakpoint-up(xs) {
8
+ grid-auto-columns: min-content;
9
+ grid-template-rows: 1fr;
10
+ }
11
+
12
+ > * {
13
+ &:not(.extra-buttons) {
14
+ animation: fadein 2s;
15
+ }
16
+
17
+ @include media-breakpoint-up(xs) {
18
+ grid-column: auto;
19
+ grid-row: 1;
20
+ }
21
+ }
22
+
23
+ .s72-pricing-button-container {
24
+ display: grid;
25
+ gap: 16px;
26
+ grid-template-columns: 1fr 1fr;
27
+
28
+ @include media-breakpoint-up(xs) {
29
+ grid-template-columns: none;
30
+ }
31
+
32
+ > * {
33
+ align-self: start;
34
+ }
35
+
36
+ // If there is only one button, make it full width on one row.
37
+ :only-child {
38
+ grid-column: 1 / 3;
39
+ grid-row: 1;
40
+ }
41
+
42
+ // If there are two buttons...
43
+ :first-child:nth-last-child(2) {
44
+ // And the first button is the subscribe button:
45
+ // Put the subscribe button in the first row full width.
46
+ &.s72-subscribe {
47
+ grid-column: 1 / 3;
48
+ grid-row: 1;
49
+
50
+ @include media-breakpoint-up(xs) {
51
+ grid-column: auto;
52
+ }
53
+
54
+ // And put the other button in the second row full width.
55
+ + .s72-btn-purchase,
56
+ + .s72-btn-rent {
57
+ grid-column: 1 / 3;
58
+ grid-row: 2;
59
+
60
+ @include media-breakpoint-up(xs) {
61
+ grid-column: auto;
62
+ grid-row: 1;
63
+ }
64
+ }
65
+ }
66
+
67
+ // And the first button is the buy button
68
+ // Put the buy button in the first column, first row.
69
+ &.s72-btn-purchase {
70
+ grid-column: 1 / 2;
71
+ grid-row: 1;
72
+
73
+ @include media-breakpoint-up(xs) {
74
+ grid-column: auto;
75
+ }
76
+
77
+ // And put the rent button in the second column, first row.
78
+ + .s72-btn-rent {
79
+ grid-column: 2 / 3;
80
+ grid-row: 1;
81
+
82
+ @include media-breakpoint-up(xs) {
83
+ grid-column: auto;
84
+ }
85
+ }
86
+ }
87
+ }
88
+
89
+ // If there are three buttons...
90
+ :first-child:nth-last-child(3) {
91
+ // Put the subscribe button in the first row full width.
92
+ &.s72-subscribe {
93
+ grid-column: 1 / 3;
94
+ grid-row: 1;
95
+
96
+ @include media-breakpoint-up(xs) {
97
+ grid-column: auto;
98
+ }
99
+
100
+ // Put the buy button in the first column, second row.
101
+ ~ .s72-btn-purchase {
102
+ grid-column: 1 / 2;
103
+ grid-row: 2;
104
+
105
+ @include media-breakpoint-up(xs) {
106
+ grid-column: auto;
107
+ grid-row: 1;
108
+ }
109
+ }
110
+
111
+ // And put the rent button in the second column, second row.
112
+ ~ .s72-btn-rent {
113
+ grid-column: 2 / 3;
114
+ grid-row: 2;
115
+
116
+ @include media-breakpoint-up(xs) {
117
+ grid-column: auto;
118
+ grid-row: 1;
119
+ }
120
+ }
121
+ }
122
+ }
123
+
124
+ .s72-btn {
125
+ white-space: nowrap;
126
+ width: 100%;
127
+
128
+ @include media-breakpoint-up(xs) {
129
+ width: auto;
130
+ }
131
+
132
+ &:nth-child(2) {
133
+ margin: 0; // RELISH OVERRIDE.
134
+ }
135
+ }
136
+ }
137
+
138
+ s72-play-button {
139
+ .s72-btn-play {
140
+ margin: 0;
141
+ min-width: 140px;
142
+ padding: 6px 12px;
143
+ width: 100%;
144
+ }
145
+
146
+ .s72-btn-play-icon {
147
+ display: none;
148
+ }
149
+
150
+ .verb {
151
+ font-size: 1rem;
152
+ }
153
+ }
154
+
155
+ .s72-btn-can-be-watched {
156
+ min-width: 140px;
157
+ padding: 6px 12px;
158
+ width: 100%;
159
+
160
+ .padder {
161
+ display: none;
162
+ }
163
+
164
+ .s72-btn-can-be-watched-label {
165
+ font-size: 1rem;
166
+ font-weight: 400;
167
+ }
168
+ }
169
+
170
+ .extra-buttons {
171
+ align-items: center;
172
+ display: grid;
173
+ gap: 16px;
174
+ grid-template-rows: 1fr;
175
+ justify-items: center;
176
+ padding: 0 36px;
177
+
178
+ @include media-breakpoint-up(xs) {
179
+ grid-template-columns: min-content min-content min-content;
180
+ padding: 0;
181
+ }
182
+
183
+ > * {
184
+ align-self: start;
185
+ animation: fadein 2s;
186
+ grid-column: auto;
187
+ grid-row: 1;
188
+ }
189
+
190
+ /*#region ICON HACKS. TODO: CLEAN THIS MESS UP! */
191
+ // This region exists to override styles for the trailer button, wishlist button, and share modal button.
192
+ // Once the new icons have been committed to core-template, this region should be deleted from this file,
193
+ // and the new CSS for these icons should live in _buttons.scss (probably).
194
+ .s72-btn-play {
195
+ background: transparent;
196
+ border: 0;
197
+ height: 42px;
198
+ margin: 0;
199
+ padding: 0;
200
+ width: 42px;
201
+
202
+ @include hover-focus {
203
+ background: transparent;
204
+
205
+ circle {
206
+ fill: var(--primary);
207
+ stroke: var(--primary);
208
+ stroke-width: 3px;
209
+ }
210
+
211
+ path {
212
+ fill: #000;
213
+ stroke: #000;
214
+ }
215
+ }
216
+
217
+ circle {
218
+ fill: transparent;
219
+ stroke: var(--primary);
220
+ stroke-width: 3px;
221
+ }
222
+
223
+ path {
224
+ fill: var(--body-color);
225
+ stroke: var(--body-color);
226
+ }
227
+
228
+ .verb {
229
+ display: none;
230
+ }
231
+ }
232
+
233
+ .s72-userwishlist-buttons {
234
+ .s72-btn-wishlist {
235
+ height: 42px;
236
+ margin: 0;
237
+ padding: 0;
238
+ width: 42px;
239
+ }
240
+
241
+ i {
242
+ margin: 0;
243
+ padding: 0;
244
+ }
245
+
246
+ span {
247
+ font-size: 0;
248
+ }
249
+ }
250
+
251
+ .social-media-buttons {
252
+ .s72-btn {
253
+ border: 0;
254
+ height: 42px;
255
+ padding: 0;
256
+ width: 42px;
257
+ }
258
+ }
259
+ /*#endregion */
260
+ }
261
+ }
262
+ /* stylelint-enable selector-max-compound-selectors, max-nesting-depth */
@@ -155,12 +155,11 @@ s72-activatedevice-form,
155
155
 
156
156
  .s72-modal-container {
157
157
  .s72-buttons {
158
-
159
158
  .fa-ellipsis-v {
160
159
  opacity: 0.7;
161
160
  }
162
161
 
163
- .s72-btn:not(.s72-btn-show-saved-cards) {
162
+ .s72-btn {
164
163
  color: $button-text-color;
165
164
 
166
165
  &:hover {
@@ -157,7 +157,9 @@
157
157
  content: '\e01c';
158
158
  }
159
159
 
160
- .fa-warning::before, .fa-exclamation-circle::before, .fa-exclamation-triangle::before {
160
+ .fa-warning::before,
161
+ .fa-exclamation-circle::before,
162
+ .fa-exclamation-triangle::before {
161
163
  content: '\e01b';
162
164
  }
163
165
 
@@ -116,49 +116,6 @@ s72-classification-label {
116
116
  display: inline-block;
117
117
  }
118
118
 
119
- .s72-classification {
120
- @extend .d-flex;
121
- display: inline-block;
122
- margin-top: 0;
123
- padding: 0;
124
-
125
- .s72-classification-intro,
126
- .s72-classification-divider {
127
- display: none;
128
- }
129
-
130
- .s72-classification-description {
131
- color: rgba(255, 255, 255, 0.8);
132
- display: none;
133
- font-size: 14px;
134
- font-weight: $font-weight-normal;
135
- margin-left: 5px;
136
- }
137
-
138
- .s72-classification-label {
139
- border: 1px solid rgba(var(--body-color-rgb), 0.8);
140
- border-radius: 0;
141
- color: rgba(var(--body-color-rgb), 0.8);
142
- font-size: 12px;
143
- font-weight: $font-weight-bold;
144
- padding: 1px 5px;
145
- @include media-breakpoint-up(xxxl) {
146
- font-size: 14px;
147
- }
148
- }
149
- }
150
-
151
- .meta-detail-content .meta-detail-tagline-and-classification {
152
- align-items: center;
153
- display: flex !important;
154
- padding-bottom: 14px;
155
- padding-top: 8px;
156
- }
157
-
158
- .meta-detail-content .meta-detail-tagline-and-classification .s72-classification {
159
- margin-right: 5px;
160
- }
161
-
162
119
  .wishlist-page-landscape .s72-userwishlist-items {
163
120
  @extend .d-flex;
164
121
  flex-wrap: wrap;
@@ -295,6 +252,7 @@ p,
295
252
 
296
253
  .no-scroll {
297
254
  overflow-y: hidden;
255
+
298
256
  @include media-breakpoint-up(lg) {
299
257
  overflow-y: visible;
300
258
  }
@@ -10,7 +10,6 @@
10
10
 
11
11
  .meta-detail {
12
12
  padding-bottom: 0;
13
- position: relative;
14
13
 
15
14
  > .container {
16
15
  padding-left: 0;
@@ -120,7 +119,6 @@
120
119
  .meta-detail-main {
121
120
  @extend .d-flex;
122
121
  flex-direction: column;
123
- gap: 0 20px;
124
122
  padding: var(--page-detail-padding-top) 20px 0 20px;
125
123
 
126
124
  @include media-breakpoint-up(md) {
@@ -128,15 +126,15 @@
128
126
  padding-bottom: 0;
129
127
  padding-top: var(--page-detail-padding-top-md);
130
128
  }
129
+
131
130
  @include media-breakpoint-up(lg) {
132
- padding-left: 50px;
133
- padding-right: 50px;
134
- padding-top: var(--page-detail-padding-top-lg);
131
+ padding: var(--page-detail-padding-top-lg) 50px 0 50px;
135
132
  }
136
133
 
137
134
  .poster {
138
135
  animation: fadein 2s;
139
136
  display: block;
137
+ margin-right: 20px;
140
138
  width: 110px;
141
139
 
142
140
  @include media-breakpoint-up(xs) {
@@ -159,11 +157,9 @@ s72-element-switcher,
159
157
  .meta-detail-bonus-content,
160
158
  .meta-detail-episodes-content {
161
159
  flex: 1 1 100%;
160
+ max-width: 728px;
162
161
 
163
- @include media-breakpoint-up(md) {
164
- max-width: 563px;
165
- }
166
- @include media-breakpoint-up(xl) {
162
+ @include media-breakpoint-up(xxxl) {
167
163
  max-width: 1100px;
168
164
  }
169
165
  }
@@ -176,7 +172,9 @@ s72-element-switcher,
176
172
  font-size: 28px;
177
173
  font-weight: $font-weight-bold;
178
174
  margin-bottom: 0;
175
+ max-width: 728px;
179
176
  text-shadow: none;
177
+
180
178
  @include media-breakpoint-up(md) {
181
179
  font-size: 34px;
182
180
  }
@@ -185,6 +183,7 @@ s72-element-switcher,
185
183
  }
186
184
  @include media-breakpoint-up(xxxl) {
187
185
  font-size: 54px;
186
+ max-width: 1100px;
188
187
  }
189
188
 
190
189
  small {
@@ -206,44 +205,11 @@ s72-element-switcher,
206
205
  }
207
206
  }
208
207
 
209
- .meta-detail-buttons {
210
- margin-left: -0.5rem;
211
-
212
- // Purchase, play, trailer, wishlist are all in one group now
213
- // Need similar bootstrap approach of handling/wrapping rows and columns via negative margin
214
- margin-right: -0.5rem;
215
- min-height: 45px;
216
-
217
- /* stylelint-disable selector-max-compound-selectors */
218
- s72-pricing-buttons .s72-btn,
219
- .meta-detail-extras,
220
- s72-play-button,
221
- can-be-watched-button:not(:empty) {
222
- animation: fadein 2s;
223
- margin-left: 0.5rem;
224
- margin-right: 0.5rem;
225
- }
226
-
227
- s72-modal-player,
228
- s72-userwishlist-button,
229
- s72-pricing-buttons .s72-btn,
230
- s72-play-button,
231
- .social-media-buttons,
232
- can-be-watched-button:not(:empty) {
233
- margin-bottom: 10px;
234
- }
235
-
236
- // Handles spacing when there is only rent, only buy, or only play button
237
- s72-pricing-buttons .s72-btn,
238
- s72-play-button {
239
- &:nth-child(1) {
240
- margin-right: 0;
241
- }
242
- &:only-child {
243
- margin-right: 0.5rem;
244
- }
208
+ .meta-detail-synopsis {
209
+ max-width: 728px;
210
+ @include media-breakpoint-up(xl) {
211
+ max-width: 1100px;
245
212
  }
246
- /* stylelint-enable selector-max-compound-selectors */
247
213
  }
248
214
 
249
215
  .meta-detail-synopsis,
@@ -267,21 +233,6 @@ s72-element-switcher,
267
233
  }
268
234
  }
269
235
 
270
- .meta-detail-extras {
271
- @extend .d-flex;
272
- flex-direction: row;
273
- flex-wrap: wrap;
274
- @include media-breakpoint-up(md) {
275
- flex-direction: row;
276
- }
277
-
278
- .s72-btn,
279
- .s72-userwishlist-buttons,
280
- .social-media-buttons {
281
- animation: fadein 2s;
282
- }
283
- }
284
-
285
236
  .meta-detail-cast,
286
237
  .meta-detail-crew,
287
238
  .meta-detail-language,
@@ -321,107 +272,6 @@ s72-element-switcher,
321
272
  }
322
273
  }
323
274
 
324
- /* stylelint-disable selector-max-compound-selectors, max-nesting-depth */
325
- .meta-detail-bonus-content,
326
- .meta-detail-episodes-content {
327
- h2,
328
- h4 {
329
- align-self: stretch;
330
- font-size: 14px;
331
- font-weight: $font-weight-bold;
332
- }
333
-
334
- .list {
335
- @extend .d-flex;
336
- flex-direction: column;
337
-
338
- .bonus-item,
339
- .episode-item {
340
- padding-bottom: $grid-gutter-width / 2;
341
- padding-top: $grid-gutter-width / 2;
342
-
343
- .bonus,
344
- .episode {
345
- @extend .d-flex;
346
- flex-direction: row;
347
-
348
- .poster {
349
- flex-shrink: 0;
350
- height: 100%;
351
- width: 118px;
352
- @include media-breakpoint-up(md) {
353
- width: 158px;
354
- }
355
-
356
- .poster-image {
357
- border-radius: $poster-border-radius;
358
- }
359
-
360
- .s72-btn-play {
361
- left: 50%;
362
- padding-left: 3px;
363
- padding-right: 3px;
364
- position: absolute;
365
- top: 50%;
366
- transform: translateX(-50%) translateY(-50%);
367
- z-index: 2;
368
- .verb {
369
- display: none;
370
- }
371
- }
372
- }
373
-
374
- .caption {
375
- padding: 5px 10px;
376
- width: 100%;
377
- @include media-breakpoint-up(md) {
378
- padding: 10px $grid-gutter-width / 2;
379
- }
380
-
381
- .bonus-item-title {
382
- align-items: baseline;
383
- display: flex;
384
- }
385
-
386
- h3,
387
- h5 {
388
- font-size: 12px;
389
- font-weight: $font-weight-bold;
390
- @include media-breakpoint-up(md) {
391
- font-size: 12px;
392
- }
393
- }
394
-
395
- .runtime {
396
- color: var(--body-color);
397
- font-size: 8px;
398
- margin-left: auto;
399
- padding-left: 5px;
400
- @include media-breakpoint-up(md) {
401
- font-size: 12px;
402
- }
403
- @include media-breakpoint-up(lg) {
404
- font-size: 12px;
405
- }
406
- }
407
-
408
- .synopsis {
409
- p {
410
- color: var(--body-color);
411
- font-size: 12px;
412
- line-height: 12px;
413
- @include media-breakpoint-up(lg) {
414
- font-size: 12px;
415
- }
416
- }
417
- }
418
- }
419
- }
420
- }
421
- }
422
- }
423
- /* stylelint-enable selector-max-compound-selectors, max-nesting-depth */
424
-
425
275
  .recommendations-collection {
426
276
  padding-top: 20px;
427
277
  @include media-breakpoint-up(md) {
@@ -483,19 +333,6 @@ s72-element-switcher,
483
333
 
484
334
  .meta-detail-main {
485
335
  flex-direction: column;
486
- padding-top: var(--page-detail-padding-top);
487
-
488
- @include media-breakpoint-up(md) {
489
- padding-left: 20px;
490
- padding-right: 20px;
491
- padding-top: var(--page-detail-padding-top-md);
492
- }
493
-
494
- @include media-breakpoint-up(lg) {
495
- padding-left: 50px;
496
- padding-right: 50px;
497
- padding-top: var(--page-detail-padding-top-lg);
498
- }
499
336
  }
500
337
 
501
338
  .meta-detail-content {
@@ -522,10 +359,6 @@ s72-element-switcher,
522
359
  margin: 0;
523
360
  }
524
361
 
525
- .meta-detail-buttons {
526
- margin-bottom: 35px;
527
- }
528
-
529
362
  .meta-detail-synopsis {
530
363
  font-size: 12px;
531
364
  margin-bottom: 35px;
@@ -544,13 +377,6 @@ s72-element-switcher,
544
377
  }
545
378
  }
546
379
 
547
- .meta-detail-extras {
548
- @extend .d-flex;
549
-
550
- min-height: min-content;
551
- padding: 0;
552
- }
553
-
554
380
  .page-collection-list {
555
381
  padding: 0;
556
382
 
@@ -575,15 +401,15 @@ s72-element-switcher,
575
401
 
576
402
  .meta-detail-episodes-content,
577
403
  .meta-detail-bonus-content {
578
- .poster .s72-btn-play {
579
- padding-right: 3px;
580
- }
581
- }
404
+ margin-bottom: 40px;
582
405
 
583
- .meta-detail-bonus-content .synopsis {
584
- font-size: 12px;
585
- @include media-breakpoint-up(lg) {
586
- font-size: 12px;
406
+ h2 {
407
+ font-size: 18px;
408
+ margin-bottom: 15px;
409
+
410
+ @include media-breakpoint-up(sm) {
411
+ font-size: 22px;
412
+ }
587
413
  }
588
414
  }
589
415
 
@@ -26,3 +26,36 @@
26
26
  background-color: #fdff5c;
27
27
  color: #000;
28
28
  }
29
+
30
+ .s72-classification {
31
+ display: inline-block;
32
+ margin-right: 5px;
33
+ margin-top: 0;
34
+ padding: 0;
35
+
36
+ .s72-classification-intro,
37
+ .s72-classification-divider {
38
+ display: none;
39
+ }
40
+
41
+ .s72-classification-label {
42
+ background-color: rgba(var(--body-color-rgb), 0.15);
43
+ border: 0;
44
+ border-radius: 5;
45
+ color: rgba(var(--body-color-rgb), 0.8);
46
+ font-size: 12px;
47
+ font-weight: $font-weight-bold;
48
+ padding: 1px 5px;
49
+
50
+ @include media-breakpoint-up(xxxl) {
51
+ font-size: 14px;
52
+ }
53
+ }
54
+ }
55
+
56
+ .meta-detail-content .meta-detail-tagline-and-classification {
57
+ align-items: center;
58
+ display: flex !important;
59
+ padding-bottom: 14px;
60
+ padding-top: 8px;
61
+ }
@@ -94,7 +94,3 @@
94
94
  padding-top: 10px;
95
95
  }
96
96
  }
97
-
98
- .meta-item-buttons {
99
- margin-top: 5px;
100
- }