viniBaxter-desk_front 15.0.0 → 20.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1238c13fde396f1b8d0a365bbda0db09016806743338908f6d17999e2d276496
4
- data.tar.gz: a9745f68e1d2d5b9d07eb5fa2cf668383e3dc1f53845d0b5f297bdd88084fb14
3
+ metadata.gz: c98493a3fd6b08c88ebe1b919877a1e77cea3e877603d2a24d22363cf1284320
4
+ data.tar.gz: 1046b37f0cac4394744cf6afa8bd04e90dbe4119e2879d92515c20e74ba6e72a
5
5
  SHA512:
6
- metadata.gz: 9af8e10bf3319bf2dcdd44e71b24d0bc747d374fb745ffe6abbb93d38dc68321edf2e662185506a2e5a58f42357430c7a9cc7fed0de52bce5b997916e6629141
7
- data.tar.gz: a1dd6e83bae900fc22876320b149b989d4322b0f1b43105c715e304200b09fd76ba8772bfe2238196aeb85cb59f07bd747683d76ff267c1e9e82858e036d547e
6
+ metadata.gz: 3a351e6425f7b27ecd14beed814b47bae6098089891820ac910eae1970fc4aa8eedb122a4b8a9ff21f7b15fd8e9095d8743297465001d6e1181e9583f6da60dd
7
+ data.tar.gz: 18a652761fe7f960edeb102b794355dbcaac9b61fc25eeec1fd2993b32fb768748f4ff99f0c07c02df4954705ec6632e05f92287e7ff37ac015c8a54c6d33b71
@@ -1,5 +1,5 @@
1
1
  module ViniBaxter
2
2
  module DeskFront
3
- VERSION = "15.0.0"
3
+ VERSION = "20.0.0"
4
4
  end
5
5
  end
@@ -19,14 +19,13 @@
19
19
  position: absolute;
20
20
  width: 0;
21
21
  height: 0;
22
- background-image: url(image-path("desk_front/avatar-status.svg")),
23
- url(image-path("desk_front/avatar-group.svg")),
24
- url(image-path("desk_front/avatar-group-hover.svg")),
25
- url(image-path("desk_front/avatar-group-hover-last.svg"));
22
+ background-image: url(image-path('desk_front/avatar-status.svg')),
23
+ url(image-path('desk_front/avatar-group.svg')),
24
+ url(image-path('desk_front/avatar-group-hover.svg')),
25
+ url(image-path('desk_front/avatar-group-hover-last.svg'));
26
26
  }
27
27
  }
28
28
 
29
-
30
29
  .avatar-img {
31
30
  width: 100%;
32
31
  height: 100%;
@@ -44,12 +43,12 @@
44
43
  color: $avatar-title-color;
45
44
  }
46
45
 
47
-
48
46
  // Status
49
47
 
50
48
  .avatar-online,
51
- .avatar-offline {
52
-
49
+ .avatar-offline,
50
+ .card-notselected,
51
+ .card-selected {
53
52
  &::before {
54
53
  content: '';
55
54
  position: absolute;
@@ -61,12 +60,13 @@
61
60
  }
62
61
 
63
62
  .avatar-img {
64
- mask-image: url(image-path("desk_front/avatar-status.svg"));
63
+ mask-image: url(image-path('desk_front/avatar-status.svg'));
65
64
  mask-size: 100% 100%;
66
65
  }
67
66
  }
68
67
 
69
- .avatar-online::before {
68
+ .avatar-online::before,
69
+ .card-selected::before {
70
70
  background-color: $success;
71
71
  }
72
72
 
@@ -74,6 +74,9 @@
74
74
  background-color: $gray-500;
75
75
  }
76
76
 
77
+ .card-notselected::before {
78
+ background-color: $warning;
79
+ }
77
80
 
78
81
  // Sizing
79
82
 
@@ -113,7 +116,6 @@
113
116
  }
114
117
  }
115
118
 
116
-
117
119
  // Ratio
118
120
 
119
121
  .avatar.avatar-4by3 {
@@ -140,7 +142,6 @@
140
142
  width: $avatar-size-xxl * 4 / 3;
141
143
  }
142
144
 
143
-
144
145
  // Group
145
146
 
146
147
  .avatar-group {
@@ -173,9 +174,9 @@
173
174
  }
174
175
 
175
176
  // Add some spacing between avatars
176
-
177
+
177
178
  .avatar:not(:last-child) {
178
- mask-image: url(image-path("desk_front/avatar-group.svg"));
179
+ mask-image: url(image-path('desk_front/avatar-group.svg'));
179
180
  mask-size: 100% 100%;
180
181
  }
181
182
 
@@ -186,13 +187,12 @@
186
187
  z-index: 1;
187
188
 
188
189
  + .avatar {
189
- mask-image: url(image-path("desk_front/avatar-group-hover.svg"));
190
+ mask-image: url(image-path('desk_front/avatar-group-hover.svg'));
190
191
  mask-size: 100% 100%;
191
192
 
192
193
  &:last-child {
193
- mask-image: url(image-path("desk_front/avatar-group-hover-last.svg"));
194
+ mask-image: url(image-path('desk_front/avatar-group-hover-last.svg'));
194
195
  }
195
196
  }
196
197
  }
197
-
198
198
  }
@@ -3,7 +3,6 @@
3
3
  // Extended from Bootstrap
4
4
  //
5
5
 
6
-
7
6
  //
8
7
  // Bootstrap Overrides =======================
9
8
  //
@@ -13,7 +12,6 @@
13
12
  border-style: solid;
14
13
  }
15
14
 
16
-
17
15
  // Navbar dark
18
16
 
19
17
  .navbar-dark {
@@ -50,14 +48,11 @@
50
48
  }
51
49
 
52
50
  .navbar-dark.navbar-expand {
53
-
54
51
  @each $breakpoint, $value in $grid-breakpoints {
55
52
  $prev: breakpoint-prev($breakpoint, $grid-breakpoints);
56
53
 
57
54
  &-#{$breakpoint} {
58
-
59
55
  @include media-breakpoint-down(#{$prev}) {
60
-
61
56
  .navbar-nav .dropdown-item {
62
57
  color: $navbar-dark-color;
63
58
 
@@ -76,11 +71,15 @@
76
71
  }
77
72
  }
78
73
 
79
-
80
74
  // Navbar vibrant
81
75
 
82
76
  .navbar-dark.navbar-vibrant {
83
- background-image: linear-gradient(to bottom right, fade-out(#454545, .1), fade-out(#454545, .1)), url(image-path("desk_front/sidebar-cover.jpg"));
77
+ background-image: linear-gradient(
78
+ to bottom right,
79
+ fade-out(#454545, 0.1),
80
+ fade-out(#454545, 0.1)
81
+ ),
82
+ url(image-path('desk_front/sidebar-cover.jpg'));
84
83
  background-repeat: no-repeat, no-repeat;
85
84
  background-position: center center, center center;
86
85
  background-size: cover, cover;
@@ -138,14 +137,11 @@
138
137
  }
139
138
 
140
139
  .navbar-dark.navbar-vibrant.navbar-expand {
141
-
142
140
  @each $breakpoint, $value in $grid-breakpoints {
143
141
  $prev: breakpoint-prev($breakpoint, $grid-breakpoints);
144
142
 
145
143
  &-#{$breakpoint} {
146
-
147
144
  @include media-breakpoint-down(#{$prev}) {
148
-
149
145
  .navbar-nav .dropdown-item {
150
146
  color: $navbar-vibrant-color;
151
147
 
@@ -159,7 +155,6 @@
159
155
  .navbar-nav .dropdown-item:active {
160
156
  color: $navbar-vibrant-active-color;
161
157
  }
162
-
163
158
  }
164
159
  }
165
160
  }
@@ -169,7 +164,6 @@
169
164
  background-image: $navbar-vibrant-toggler-icon-bg;
170
165
  }
171
166
 
172
-
173
167
  // Navbar light
174
168
 
175
169
  .navbar-light {
@@ -205,7 +199,6 @@
205
199
  border-top-color: $navbar-light-divider-color;
206
200
  }
207
201
 
208
-
209
202
  // Navbar brand
210
203
 
211
204
  .navbar-brand {
@@ -218,7 +211,6 @@
218
211
  max-height: 1.5rem;
219
212
  }
220
213
 
221
-
222
214
  // Navbar collapse
223
215
 
224
216
  .navbar-collapse {
@@ -238,7 +230,6 @@
238
230
  }
239
231
  }
240
232
 
241
-
242
233
  // Navbar navigaton
243
234
 
244
235
  .navbar-nav {
@@ -264,17 +255,15 @@
264
255
  }
265
256
  }
266
257
 
267
-
268
258
  // Navbar icons
269
259
 
270
260
  .navbar-nav .nav-link > .fe {
271
261
  min-width: $navbar-icon-min-width;
272
- padding-bottom: .125em;
262
+ padding-bottom: 0.125em;
273
263
  font-size: $font-size-lg;
274
264
  line-height: ($font-size-base * $line-height-base);
275
265
  }
276
266
 
277
-
278
267
  // Navbar dropdowns
279
268
 
280
269
  .navbar-nav .dropdown-menu {
@@ -286,14 +275,11 @@
286
275
  }
287
276
 
288
277
  .navbar-expand {
289
-
290
278
  @each $breakpoint, $value in $grid-breakpoints {
291
279
  $prev: breakpoint-prev($breakpoint, $grid-breakpoints);
292
280
 
293
281
  &-#{$breakpoint} {
294
-
295
282
  @include media-breakpoint-down(#{$prev}) {
296
-
297
283
  .navbar-nav .dropdown-menu {
298
284
  background-color: transparent;
299
285
  }
@@ -302,22 +288,18 @@
302
288
  }
303
289
  }
304
290
 
305
-
306
291
  // Expanded
307
292
  //
308
293
  // Expanded navbar specific styles
309
294
 
310
295
  .navbar-expand {
311
-
312
296
  @each $breakpoint, $value in $grid-breakpoints {
313
-
314
297
  &-#{$breakpoint} {
315
-
316
298
  @include media-breakpoint-up(#{$breakpoint}) {
317
299
  padding-left: 0;
318
300
  padding-right: 0;
319
301
 
320
- > [class*="container"] {
302
+ > [class*='container'] {
321
303
  padding-left: 0;
322
304
  padding-right: 0;
323
305
  }
@@ -336,10 +318,9 @@
336
318
  }
337
319
 
338
320
  .navbar-nav .nav-link {
339
-
340
321
  // Increase $nav-link-padding-y value to align the underline
341
322
  // with the bottom of the navbar
342
- padding: .625rem $navbar-nav-link-padding-x;
323
+ padding: 0.625rem $navbar-nav-link-padding-x;
343
324
 
344
325
  &.active {
345
326
  position: relative;
@@ -357,10 +338,11 @@
357
338
 
358
339
  // Toggle dropdown on hover
359
340
  @if ($navbar-dropdown-toggle-on-hover) {
360
- .dropup, .dropright, .dropdown, .dropleft {
361
-
341
+ .dropup,
342
+ .dropright,
343
+ .dropdown,
344
+ .dropleft {
362
345
  @include hover {
363
-
364
346
  > .dropdown-menu {
365
347
  display: block;
366
348
  }
@@ -369,10 +351,10 @@
369
351
  }
370
352
 
371
353
  .navbar-nav .dropdown-menu,
372
- .navbar-nav > .dropdown-menu.show{
354
+ .navbar-nav > .dropdown-menu.show {
373
355
  border: $dropdown-border-width solid $dropdown-border-color;
374
- border-radius:$dropdown-border-radius;
375
- box-shadow:unset!important;
356
+ border-radius: $dropdown-border-radius;
357
+ box-shadow: unset !important;
376
358
  }
377
359
 
378
360
  .navbar-nav .dropdown-menu .dropdown-menu {
@@ -383,7 +365,6 @@
383
365
  }
384
366
  }
385
367
 
386
-
387
368
  //
388
369
  // Dashkit ===================================
389
370
  //
@@ -392,11 +373,10 @@
392
373
  //
393
374
  // Adds special zindex to custom fixed-left and fixed-right classes
394
375
 
395
- .navbar[class*="fixed-"] {
376
+ .navbar[class*='fixed-'] {
396
377
  z-index: $zindex-fixed;
397
378
  }
398
379
 
399
-
400
380
  // Navbar overflow
401
381
  //
402
382
  // Allows the navbar navigation overflow its parent container
@@ -426,14 +406,12 @@
426
406
  padding-bottom: ($nav-link-padding-y + $navbar-padding-y);
427
407
 
428
408
  &.active {
429
-
430
409
  &:before {
431
410
  bottom: 0;
432
411
  }
433
412
  }
434
413
  }
435
414
 
436
-
437
415
  // Navbar breadcrumb
438
416
  //
439
417
  // Applies special paddings to the navbar breadcrumb
@@ -442,7 +420,6 @@
442
420
  padding: $navbar-breadcrumb-padding-y $navbar-breadcrumb-padding-x;
443
421
  }
444
422
 
445
-
446
423
  // Navbar user
447
424
  //
448
425
  // Navbar user notification area
@@ -455,14 +432,12 @@
455
432
  }
456
433
 
457
434
  .navbar-user .dropdown-toggle {
458
-
459
435
  // Remove the default dropdown arrow
460
436
  &:after {
461
437
  display: none;
462
438
  }
463
439
  }
464
440
 
465
-
466
441
  // Navbar link icon
467
442
 
468
443
  .navbar-nav .nav-link > .fe {
@@ -470,31 +445,27 @@
470
445
  min-width: $navbar-icon-min-width;
471
446
  }
472
447
 
473
-
474
448
  // Vertical
475
449
  //
476
450
  // Creates a vertically aligned version of the navbar
477
451
 
478
452
  .navbar-vertical {
479
-
480
453
  .navbar-nav .nav-link {
481
454
  display: flex;
482
455
  align-items: center;
483
456
  }
484
457
 
485
- .navbar-nav .nav-link[data-toggle="collapse"] {
486
-
458
+ .navbar-nav .nav-link[data-toggle='collapse'] {
487
459
  &:after {
488
460
  display: block;
489
461
  content: '\e92e';
490
462
  font-family: 'Feather';
491
463
  margin-left: auto;
492
- transition: transform .2s;
464
+ transition: transform 0.2s;
493
465
  }
494
466
 
495
467
  // Expanded
496
- &[aria-expanded="true"] {
497
-
468
+ &[aria-expanded='true'] {
498
469
  &:after {
499
470
  transform: rotate(-180deg);
500
471
  }
@@ -518,20 +489,16 @@
518
489
  padding-bottom: $nav-link-padding-y;
519
490
  font-size: $font-size-xs;
520
491
  text-transform: uppercase;
521
- letter-spacing: .04em;
492
+ letter-spacing: 0.04em;
522
493
  }
523
494
 
524
-
525
495
  // Expanded
526
496
  //
527
497
  // Expanded navbar specific styles
528
498
 
529
499
  &.navbar-expand {
530
-
531
500
  @each $breakpoint, $value in $grid-breakpoints {
532
-
533
501
  &-#{$breakpoint} {
534
-
535
502
  @include media-breakpoint-up(#{$breakpoint}) {
536
503
  display: block;
537
504
  position: fixed;
@@ -543,7 +510,7 @@
543
510
  padding-right: $navbar-vertical-padding-x;
544
511
  overflow-y: auto;
545
512
 
546
- > [class*="container"] {
513
+ > [class*='container'] {
547
514
  flex-direction: column;
548
515
  align-items: stretch;
549
516
  min-height: 100%;
@@ -551,7 +518,8 @@
551
518
  padding-right: 0;
552
519
 
553
520
  // Target IE 10 & 11
554
- @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
521
+ @media all and (-ms-high-contrast: none),
522
+ (-ms-high-contrast: active) {
555
523
  min-height: none;
556
524
  height: 100%;
557
525
  }
@@ -592,13 +560,12 @@
592
560
  padding: $nav-link-padding-y $navbar-vertical-padding-x;
593
561
 
594
562
  &.active {
595
-
596
563
  &:before {
597
564
  top: $nav-link-padding-y;
598
565
  bottom: $nav-link-padding-y;
599
566
  left: 0;
600
567
  right: auto;
601
- border-left: 2px solid $primary;
568
+ border-left: 4px solid $primary;
602
569
  border-bottom: 0;
603
570
  }
604
571
  }
@@ -609,11 +576,13 @@
609
576
  }
610
577
 
611
578
  .navbar-nav .nav .nav .nav-link {
612
- padding-left: $navbar-vertical-padding-x * 1.5 + $navbar-icon-min-width;
579
+ padding-left: $navbar-vertical-padding-x * 1.5 +
580
+ $navbar-icon-min-width;
613
581
  }
614
582
 
615
583
  .navbar-nav .nav .nav .nav .nav-link {
616
- padding-left: $navbar-vertical-padding-x * 2 + $navbar-icon-min-width;
584
+ padding-left: $navbar-vertical-padding-x * 2 +
585
+ $navbar-icon-min-width;
617
586
  }
618
587
 
619
588
  .navbar-brand {
@@ -648,23 +617,18 @@
648
617
  }
649
618
  }
650
619
 
651
-
652
620
  // Vertical small
653
621
  //
654
622
  // Creates a small vertion of the vertical navbar
655
623
 
656
624
  .navbar-vertical-sm {
657
-
658
625
  // Expanded
659
626
  //
660
627
  // Expanded navbar specific styles
661
628
 
662
629
  &.navbar-expand {
663
-
664
630
  @each $breakpoint, $value in $grid-breakpoints {
665
-
666
631
  &-#{$breakpoint} {
667
-
668
632
  @include media-breakpoint-up(#{$breakpoint}) {
669
633
  max-width: $navbar-vertical-width-sm;
670
634
  padding-left: $navbar-vertical-padding-x-sm;
@@ -672,8 +636,12 @@
672
636
  overflow: visible;
673
637
 
674
638
  .navbar-brand {
675
- padding-top: ($nav-link-padding-y * 2 + $font-size-base * $line-height-base) / 2 - $navbar-padding-y;
676
- padding-bottom: ($nav-link-padding-y * 2 + $font-size-base * $line-height-base) / 2;
639
+ padding-top: (
640
+ $nav-link-padding-y * 2 + $font-size-base * $line-height-base
641
+ ) / 2 - $navbar-padding-y;
642
+ padding-bottom: (
643
+ $nav-link-padding-y * 2 + $font-size-base * $line-height-base
644
+ ) / 2;
677
645
  }
678
646
 
679
647
  .navbar-brand-img {
@@ -701,7 +669,6 @@
701
669
  }
702
670
 
703
671
  .navbar-nav > .nav-item > .dropdown-toggle {
704
-
705
672
  &::after {
706
673
  display: none;
707
674
  }
@@ -10,12 +10,18 @@
10
10
  width: 100%;
11
11
  }
12
12
  .love-card {
13
- font-size: 41px;
13
+ font-size: 35px;
14
14
  letter-spacing: 0px;
15
15
  font-weight: 800;
16
16
  font-family: circular;
17
17
  &.place {
18
- font-size: 30px;
18
+ font-size: 18px;
19
+ @media screen and (min-width: 1300px) {
20
+ font-size: 1.4vw;
21
+ }
22
+ // @media screen and (min-width: 1200px) {
23
+ // font-size: 36px;
24
+ // }
19
25
  }
20
26
  }
21
27
 
@@ -1,4 +1,4 @@
1
- //
1
+ avatar-online//
2
2
  // device.scss
3
3
  // Theme component
4
4
  //
@@ -12,7 +12,7 @@
12
12
  }
13
13
 
14
14
  .device::before {
15
- content: "";
15
+ content: '';
16
16
  background-color: $light;
17
17
  }
18
18
 
@@ -22,24 +22,26 @@
22
22
  object-fit: cover;
23
23
  }
24
24
 
25
-
26
25
  //
27
26
  // Single devices
28
27
  //
29
28
 
30
29
  .device-iphonex::before,
31
30
  .device-iphonex > .device-screen {
32
- top: 7.784431138%; left: 16.4021164%;
33
- width: 66.137566137%; height: 80.838323353%;
31
+ top: 7.784431138%;
32
+ left: 16.4021164%;
33
+ width: 66.137566137%;
34
+ height: 80.838323353%;
34
35
  }
35
36
 
36
37
  .device-macbook::before,
37
38
  .device-macbook > .device-screen {
38
- top: 11.53846154%; left: 13.38709677%;
39
- width: 73.548387096%; height: 73.076923076%;
39
+ top: 11.53846154%;
40
+ left: 13.38709677%;
41
+ width: 73.548387096%;
42
+ height: 73.076923076%;
40
43
  }
41
44
 
42
-
43
45
  //
44
46
  // Combos
45
47
  //
@@ -57,15 +59,16 @@
57
59
  }
58
60
 
59
61
  .device-combo-iphonex-iphonex > .device-iphonex {
60
-
61
62
  &:first-child {
62
- bottom: 0; left: 0;
63
+ bottom: 0;
64
+ left: 0;
63
65
  width: 65.5260116%;
64
66
  z-index: 1;
65
67
  }
66
68
 
67
69
  &:last-child {
68
- top: 0; right: 0;
70
+ top: 0;
71
+ right: 0;
69
72
  width: 72.8323699%;
70
73
  }
71
74
  }
@@ -87,17 +90,21 @@
87
90
  }
88
91
 
89
92
  .device-combo-macbook-iphonex > .device-macbook {
90
- top: 0; left: 0;
93
+ top: 0;
94
+ left: 0;
91
95
  }
92
96
 
93
97
  .device-combo-iphonex-macbook > .device-macbook {
94
- top: 0; right: 0;
98
+ top: 0;
99
+ right: 0;
95
100
  }
96
101
 
97
102
  .device-combo-macbook-iphonex > .device-iphonex {
98
- bottom: 0; right: 0;
103
+ bottom: 0;
104
+ right: 0;
99
105
  }
100
106
 
101
107
  .device-combo-iphonex-macbook > .device-iphonex {
102
- bottom: 0; left: 0;
103
- }
108
+ bottom: 0;
109
+ left: 0;
110
+ }
@@ -3,39 +3,39 @@
3
3
  // Theme component
4
4
  //
5
5
 
6
- .icon>svg {
6
+ .icon > svg {
7
7
  width: $icon-size-base;
8
8
  height: $icon-size-base;
9
9
  }
10
10
 
11
- .icon>img {
11
+ .icon > img {
12
12
  width: $icon-size-base;
13
13
  height: $icon-size-base;
14
14
  }
15
15
 
16
16
  // Use "text-" utilities to fill svg icons
17
- .icon[class*="text-"]>svg [fill]:not([fill="none"]) {
17
+ .icon[class*='text-'] > svg [fill]:not([fill='none']) {
18
18
  fill: currentColor !important;
19
19
  }
20
20
 
21
21
  // Sizing
22
22
 
23
- .icon-xs>svg {
23
+ .icon-xs > svg {
24
24
  width: $icon-size-xs;
25
25
  height: $icon-size-xs;
26
26
  }
27
27
 
28
- .icon-sm>svg {
28
+ .icon-sm > svg {
29
29
  width: $icon-size-sm;
30
30
  height: $icon-size-sm;
31
31
  }
32
32
 
33
- .icon-lg>svg {
33
+ .icon-lg > svg {
34
34
  width: $icon-size-lg;
35
35
  height: $icon-size-lg;
36
36
  }
37
37
 
38
- .icon-xl>svg {
38
+ .icon-xl > svg {
39
39
  width: $icon-size-xl;
40
40
  height: $icon-size-xl;
41
41
  }
@@ -50,7 +50,7 @@
50
50
  height: $icon-circle-size;
51
51
  border-radius: 50%;
52
52
 
53
- >.fe {
53
+ > .fe {
54
54
  font-size: $icon-circle-font-size;
55
55
  }
56
- }
56
+ }
@@ -49,7 +49,7 @@
49
49
  // @import "footer";
50
50
  // @import "flickity";
51
51
  // @import "highlight";
52
- // @import "icon";
52
+ // @import 'icon';
53
53
  // @import "list";
54
54
  // @import "screenshot";
55
55
  // @import "section";
@@ -44,10 +44,22 @@
44
44
  &::before {
45
45
  opacity: #{$i / 10};
46
46
  }
47
+ .bg-white {
48
+ background: rgba(255, 255, 255, 0) !important;
49
+ }
47
50
  &.active {
48
51
  &::before {
49
52
  opacity: 0;
50
53
  }
54
+ h5 {
55
+ color: $light !important;
56
+ &.bg-white {
57
+ background: rgba(0, 0, 0, 0.276) !important;
58
+ }
59
+ }
60
+ // .badge {
61
+ // display: block;
62
+ // }
51
63
  }
52
64
  }
53
65
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: viniBaxter-desk_front
3
3
  version: !ruby/object:Gem::Version
4
- version: 15.0.0
4
+ version: 20.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - viny baxter
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-06-17 00:00:00.000000000 Z
11
+ date: 2020-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -352,6 +352,8 @@ files:
352
352
  - lib/viniBaxter/sass/desk_front/landing/spa_landing/theme/utilities/_visibility.scss
353
353
  - lib/viniBaxter/sass/desk_front/theme-dark.scss
354
354
  - lib/viniBaxter/sass/desk_front/theme.scss
355
+ - viniBaxter-desk_front-18.0.0.gem
356
+ - viniBaxter-desk_front-19.0.0.gem
355
357
  - viniBaxter-desk_front.gemspec
356
358
  homepage:
357
359
  licenses: