holygrail2 1.0.89 → 1.0.90

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,6 +1,6 @@
1
1
  {
2
2
  "name": "holygrail2",
3
- "version": "1.0.89",
3
+ "version": "1.0.90",
4
4
  "description": "A minimal, responsive, style-agnostic CSS framework.",
5
5
  "main": "scss/style.scss",
6
6
  "directories": {
@@ -1,5 +1,4 @@
1
1
  @import '../abstract/_all';
2
-
3
2
  .c-primary {
4
3
  color: $c-primary;
5
4
  }
@@ -9,7 +8,6 @@
9
8
  .c-dark-grey.is-through::after {
10
9
  background-color: $c-dark-grey;
11
10
  }
12
-
13
11
  .c-feel-dark.is-through::after {
14
12
  background-color: $c-feel-dark;
15
13
  }
@@ -58,7 +56,6 @@
58
56
  .c-feel-light {
59
57
  color: $c-feel-light;
60
58
  }
61
-
62
59
  .c-tier-silver {
63
60
  color: $c-tier-silver;
64
61
  }
@@ -68,7 +65,6 @@
68
65
  .c-tier-gold {
69
66
  color: $c-tier-gold;
70
67
  }
71
-
72
68
  .c-limited {
73
69
  color: $c-limited;
74
70
  }
@@ -88,7 +84,6 @@
88
84
  .bg-feel-dark {
89
85
  background-color: $c-feel-dark;
90
86
  }
91
-
92
87
  .bg-dark-grey {
93
88
  background-color: $c-dark-grey;
94
89
  }
@@ -137,7 +132,6 @@
137
132
  background-color: $bg-black;
138
133
  color: $c-bg-dark;
139
134
  }
140
-
141
135
  .bg-tier-silver {
142
136
  background-color: $c-tier-silver;
143
137
  }
@@ -147,50 +141,40 @@
147
141
  .bg-tier-gold {
148
142
  background-color: $c-tier-gold;
149
143
  }
150
-
151
144
  .bg-cover {
152
145
  background-position: center center;
153
146
  background-size: cover;
154
147
  }
155
-
156
148
  .bold {
157
149
  @include font-bold;
158
150
  }
159
-
160
151
  .semibold {
161
152
  @include font-semibold;
162
153
  }
163
154
  b {
164
155
  color: $c-secondary;
165
156
  }
166
-
167
157
  .ttc {
168
158
  text-transform: capitalize;
169
159
  }
170
-
171
160
  .margin-auto {
172
161
  margin: 0 auto;
173
162
  }
174
-
175
163
  .fl-left {
176
164
  float: left;
177
165
  }
178
-
179
166
  .fl-right {
180
167
  float: right;
181
168
  }
182
-
183
169
  .p-relative {
184
170
  position: relative;
185
171
  }
186
-
187
172
  .p-absolute {
188
173
  position: absolute;
189
174
  }
190
175
  .t-0 {
191
176
  top: 0;
192
177
  }
193
-
194
178
  .banner-zone {
195
179
  display: flex;
196
180
  align-items: center;
@@ -236,7 +220,6 @@ b {
236
220
  object-fit: cover;
237
221
  transform: translate(-50%, -50%);
238
222
  }
239
-
240
223
  .img-cover {
241
224
  position: absolute;
242
225
  top: 50%;
@@ -266,7 +249,6 @@ hr {
266
249
  }
267
250
  .only-mobile {
268
251
  display: inline-block;
269
-
270
252
  @media (min-width: $break-sm) {
271
253
  display: none;
272
254
  }
@@ -335,7 +317,6 @@ hr {
335
317
  .block-left {
336
318
  margin-right: auto;
337
319
  }
338
-
339
320
  .sm\:hidden {
340
321
  @media (max-width: #{$break-sm - 1}) {
341
322
  display: none !important;
@@ -356,7 +337,6 @@ hr {
356
337
  display: none !important;
357
338
  }
358
339
  }
359
-
360
340
  .sm\:visible {
361
341
  @media (min-width: $break-sm) {
362
342
  display: none !important;
@@ -377,7 +357,6 @@ hr {
377
357
  display: none !important;
378
358
  }
379
359
  }
380
-
381
360
  .smmax\:mb-16 {
382
361
  @media (max-width: #{$break-sm - 1}) {
383
362
  margin-bottom: 16px;
@@ -413,7 +392,6 @@ hr {
413
392
  margin-bottom: 42px;
414
393
  }
415
394
  }
416
-
417
395
  .sm\:order-last {
418
396
  @media (min-width: $break-sm) {
419
397
  order: 3;
@@ -429,11 +407,9 @@ hr {
429
407
  order: 3;
430
408
  }
431
409
  }
432
-
433
410
  .reverse {
434
411
  flex-wrap: wrap-reverse;
435
412
  }
436
-
437
413
  .smmax\:reverse {
438
414
  @media (max-width: #{$break-sm - 1}) {
439
415
  flex-wrap: wrap-reverse;
@@ -449,7 +425,6 @@ hr {
449
425
  flex-wrap: wrap-reverse;
450
426
  }
451
427
  }
452
-
453
428
  .mdmax\:px-48 {
454
429
  @media (max-width: #{$break-md - 1}) {
455
430
  padding-left: 48px;
@@ -464,7 +439,6 @@ strong {
464
439
  color: $primary;
465
440
  font-family: $font-family-a-b;
466
441
  }
467
-
468
442
  .bb-line {
469
443
  border-bottom: var(--line-width) solid $c-middle-grey;
470
444
  }
@@ -489,7 +463,6 @@ strong {
489
463
  .border-l {
490
464
  border-left: var(--line-width) solid $c-primary;
491
465
  }
492
-
493
466
  .border-b2 {
494
467
  border-top: none;
495
468
  border-bottom: var(--line-width) solid $c-primary;
@@ -503,8 +476,8 @@ strong {
503
476
  .flex-vcenter {
504
477
  display: flex;
505
478
  align-items: center;
506
- [type='checkbox']:checked + label .icon,
507
- [type='checkbox']:not(:checked) + label .icon {
479
+ [type='checkbox']:checked+label .icon,
480
+ [type='checkbox']:not(:checked)+label .icon {
508
481
  position: absolute;
509
482
  top: 50%;
510
483
  margin-top: -9px;
@@ -512,30 +485,24 @@ strong {
512
485
  }
513
486
  .only-mobile-flex {
514
487
  display: flex;
515
-
516
488
  @media (min-width: $break-sm) {
517
489
  display: flex;
518
490
  }
519
-
520
491
  @media (min-width: $break-md) {
521
492
  display: none;
522
493
  }
523
-
524
494
  @media (min-width: $break-lg) {
525
495
  display: none;
526
496
  }
527
497
  }
528
498
  .only-desktop-flex {
529
499
  display: none;
530
-
531
500
  @media (min-width: $break-sm) {
532
501
  display: none;
533
502
  }
534
-
535
503
  @media (min-width: $break-md) {
536
504
  display: flex;
537
505
  }
538
-
539
506
  @media (min-width: $break-lg) {
540
507
  display: flex;
541
508
  }
@@ -561,7 +528,6 @@ strong {
561
528
  bottom: 0;
562
529
  }
563
530
  }
564
-
565
531
  .smmax\:p-view {
566
532
  @media (max-width: #{$break-sm - 1}) {
567
533
  background-color: $c-white;
@@ -573,7 +539,6 @@ strong {
573
539
  bottom: 0;
574
540
  }
575
541
  }
576
-
577
542
  .text-faded {
578
543
  opacity: 0.5;
579
544
  }
@@ -626,19 +591,28 @@ strong {
626
591
  .form-input-label-2 label {
627
592
  text-transform: uppercase;
628
593
  }
629
-
630
594
  /* Todos los idiomas que no tienen uppercase porque son Capital sensitive, lo dejamos en minúsculas */
631
- [lang^="de"], //aleman
632
- [lang^="zh"], //chino
595
+ [lang^="de"],
596
+ //aleman
597
+ [lang^="zh"],
598
+ //chino
633
599
  [lang^="zo"],
634
- [lang^="eu"],//euskera
635
- [lang^="el"],//griego
636
- [lang^="tr"],// turco
637
- [lang^="ru"], //ruso
638
- [lang^="sr"], //serbio
639
- [lang^="uk"], //ukraniano
640
- [lang^="bg"], //bulgaro
641
- [lang^="ar"],//arab emirates, egipto ,jordania, israel ,qatar , bahrain ,arabia saudi
600
+ [lang^="eu"],
601
+ //euskera
602
+ [lang^="el"],
603
+ //griego
604
+ [lang^="tr"],
605
+ // turco
606
+ [lang^="ru"],
607
+ //ruso
608
+ [lang^="sr"],
609
+ //serbio
610
+ [lang^="uk"],
611
+ //ukraniano
612
+ [lang^="bg"],
613
+ //bulgaro
614
+ [lang^="ar"],
615
+ //arab emirates, egipto ,jordania, israel ,qatar , bahrain ,arabia saudi
642
616
  [lang^="nl"] {
643
617
  .ttu,
644
618
  .btn-primary,
@@ -686,7 +660,7 @@ strong {
686
660
  .mw-md {
687
661
  max-width: $container-6;
688
662
  }
689
- .col-lg-4 > .mw-md {
663
+ .col-lg-4>.mw-md {
690
664
  max-width: $container-6;
691
665
  }
692
666
  .mw-lg {
@@ -695,14 +669,12 @@ strong {
695
669
  .w-max {
696
670
  width: max-content;
697
671
  }
698
-
699
672
  .hidden {
700
673
  display: none !important;
701
674
  }
702
675
  .flex-grow-0 {
703
676
  flex-grow: 0;
704
677
  }
705
-
706
678
  .d-block {
707
679
  display: block;
708
680
  }
@@ -726,12 +698,10 @@ strong {
726
698
  }
727
699
  .has-light {
728
700
  color: $c-white;
729
-
730
701
  hr {
731
702
  border-top: 1px solid $c-white;
732
703
  }
733
704
  }
734
-
735
705
  .smmax\:flex {
736
706
  @media (max-width: #{$break-sm - 1}) {
737
707
  display: flex;
@@ -747,7 +717,6 @@ strong {
747
717
  display: flex;
748
718
  }
749
719
  }
750
-
751
720
  .sm\:flex {
752
721
  @media (min-width: $break-sm) {
753
722
  display: flex;
@@ -763,99 +732,80 @@ strong {
763
732
  display: flex;
764
733
  }
765
734
  }
766
-
767
735
  .pe-none {
768
736
  pointer-events: none;
769
737
  }
770
-
771
738
  .font-l {
772
739
  font-family: $font-family-a-l;
773
740
  }
774
-
775
741
  .font-r {
776
742
  font-family: $font-family-a-r;
777
743
  }
778
-
779
744
  .font-m {
780
745
  font-family: $font-family-a-m;
781
746
  }
782
-
783
747
  .font-b {
784
748
  font-family: $font-family-a-b;
785
749
  }
786
-
787
750
  .font-sb {
788
751
  font-family: $font-family-a-sb;
789
752
  }
790
-
791
753
  .absolute-middle {
792
754
  position: absolute;
793
755
  top: 50%;
794
756
  transform: translateY(-50%);
795
757
  }
796
-
797
758
  .free-product {
798
759
  color: $c-warning;
799
760
  }
800
-
801
761
  .is-invert {
802
762
  filter: invert(1);
803
763
  }
804
-
805
764
  .p-stick {
806
765
  position: sticky;
807
766
  top: 0;
808
767
  z-index: 100;
809
768
  }
810
-
811
769
  .m-0 {
812
770
  margin: 0;
813
771
  }
814
-
815
772
  .o-hidden {
816
773
  overflow: hidden;
817
774
  }
818
775
  .max-vw-35 {
819
776
  max-width: 35vw;
820
777
  }
821
-
822
778
  .reset-body {
823
779
  margin-left: -20px;
824
780
  margin-right: -20px;
825
-
826
781
  @media (min-width: $break-md) {
827
782
  margin-left: -40px;
828
783
  margin-right: -40px;
829
784
  }
830
785
  }
831
-
832
786
  .sm\:reset-body {
833
787
  @media (max-width: #{$break-sm - 1}) {
834
788
  margin-left: -16px;
835
789
  margin-right: -16px;
836
790
  }
837
791
  }
838
-
839
792
  .md\:reset-body {
840
793
  @media (max-width: #{$break-md - 1}) {
841
794
  margin-left: -16px;
842
795
  margin-right: -16px;
843
796
  }
844
797
  }
845
-
846
798
  .sm\:reset-body {
847
799
  @media (max-width: #{$break-sm - 1}) {
848
800
  margin-left: -16px;
849
801
  margin-right: -16px;
850
802
  }
851
803
  }
852
-
853
804
  .sm\:grid-4 {
854
805
  @media (max-width: #{$break-sm - 1}) {
855
806
  grid-template-columns: repeat(2, 1fr);
856
807
  }
857
808
  }
858
-
859
809
  .min-scrollcustom-y {
860
810
  overflow: auto;
861
811
  &::-webkit-scrollbar {
@@ -877,7 +827,6 @@ strong {
877
827
  background: #999;
878
828
  }
879
829
  }
880
-
881
830
  .min-scrollcustom-x {
882
831
  overflow: auto;
883
832
  &::-webkit-scrollbar {
@@ -899,7 +848,6 @@ strong {
899
848
  background: #999;
900
849
  }
901
850
  }
902
-
903
851
  .min-scrollcustom-x.has-dark {
904
852
  overflow: auto;
905
853
  &::-webkit-scrollbar {
@@ -921,37 +869,40 @@ strong {
921
869
  background: $c-primary;
922
870
  }
923
871
  }
924
-
925
872
  .leading-1 {
926
873
  line-height: 1;
927
874
  }
928
-
929
875
  .tag-product {
930
876
  position: absolute;
931
877
  z-index: 10;
932
878
  top: 0;
933
879
  left: 0;
934
-
935
880
  .is-rtl & {
936
881
  right: 0;
937
882
  left: inherit;
938
883
  }
939
884
  }
940
-
941
885
  .m--1 {
942
886
  margin-top: -1px;
943
887
  }
944
-
945
888
  .btn-group-bleed {
946
889
  .btn-group {
947
890
  margin-top: -1px;
948
891
  }
949
892
  }
950
-
951
893
  .is-active.btn-secondary {
952
894
  background-color: $c-primary;
953
-
954
895
  color: $c-white;
955
896
  background-color: $c-primary;
956
897
  border: 1px solid $c-primary;
957
898
  }
899
+ .fixed-bottom {
900
+ position: absolute;
901
+ bottom: 0;
902
+ left: 0;
903
+ right: 0;
904
+ }
905
+ .sidebar-overflow {
906
+ height: 100vh;
907
+ overflow: auto;
908
+ }