holygrail2 1.0.0

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.
Files changed (57) hide show
  1. package/.editorconfig +13 -0
  2. package/.prettierrc +6 -0
  3. package/.stylelintrc +27 -0
  4. package/.vscode/settings.json +3 -0
  5. package/assets/images/minilogo.png +0 -0
  6. package/cssconfig.json +373 -0
  7. package/dist/style.css +10376 -0
  8. package/dist/style.css.map +1 -0
  9. package/doc/docs.css +1764 -0
  10. package/doc/docs.css.map +1 -0
  11. package/guide/index.html +3202 -0
  12. package/package.json +59 -0
  13. package/readme.md +123 -0
  14. package/scss/_partials.scss +44 -0
  15. package/scss/abstract/_0debug.scss +192 -0
  16. package/scss/abstract/_all.scss +4 -0
  17. package/scss/abstract/_breakpoints.scss +27 -0
  18. package/scss/abstract/_fonts.scss +22 -0
  19. package/scss/abstract/_mixins.scss +691 -0
  20. package/scss/abstract/_reset.scss +124 -0
  21. package/scss/abstract/_setup.scss +385 -0
  22. package/scss/base/_alignment.scss +294 -0
  23. package/scss/base/_animations.scss +64 -0
  24. package/scss/base/_extras.scss +21 -0
  25. package/scss/base/_grid.scss +361 -0
  26. package/scss/base/_height.scss +19 -0
  27. package/scss/base/_helpers.scss +814 -0
  28. package/scss/base/_icons.scss +162 -0
  29. package/scss/base/_ratios.scss +262 -0
  30. package/scss/base/_rtl.scss +480 -0
  31. package/scss/base/_spacing.scss +60 -0
  32. package/scss/base/_types.scss +117 -0
  33. package/scss/docs.scss +680 -0
  34. package/scss/elements/_animated.scss +73 -0
  35. package/scss/elements/_banners.scss +68 -0
  36. package/scss/elements/_buttons.scss +1324 -0
  37. package/scss/elements/_checkbox.scss +722 -0
  38. package/scss/elements/_color_selector.scss +112 -0
  39. package/scss/elements/_datalist.scss +55 -0
  40. package/scss/elements/_form.scss +708 -0
  41. package/scss/elements/_links.scss +268 -0
  42. package/scss/elements/_list.scss +271 -0
  43. package/scss/elements/_modal.scss +141 -0
  44. package/scss/elements/_progressbar.scss +20 -0
  45. package/scss/elements/_tabs.scss +216 -0
  46. package/scss/elements/_tabs_specials.scss +216 -0
  47. package/scss/elements/_tag.scss +58 -0
  48. package/scss/elements/_tooltip.scss +176 -0
  49. package/scss/layouts/_box3.scss +64 -0
  50. package/scss/layouts/_box4.scss +19 -0
  51. package/scss/layouts/_card.scss +24 -0
  52. package/scss/layouts/_card9.scss +348 -0
  53. package/scss/layouts/_feel.scss +2 -0
  54. package/scss/layouts/_header_account.scss +144 -0
  55. package/scss/layouts/_hgbread.scss +51 -0
  56. package/scss/layouts/_row1.scss +108 -0
  57. package/scss/style.scss +1 -0
@@ -0,0 +1,691 @@
1
+ @use 'sass:math';
2
+ @import 'breakpoints';
3
+
4
+ @mixin background-alpha($color: $color-white, $alpha: 1) {
5
+ background-color: hsla(hue($color), saturation($color), lightness($color), $alpha);
6
+ }
7
+
8
+ @mixin user-select($select) {
9
+ user-select: $select;
10
+ }
11
+
12
+ @mixin font-light() {
13
+ font-family: $font-family-a-l;
14
+ font-weight: $font-weight-light;
15
+ }
16
+
17
+ @mixin font-regular() {
18
+ font-family: $font-family-a-r;
19
+ font-weight: $font-weight-regular;
20
+ }
21
+
22
+ @mixin font-medium() {
23
+ font-family: $font-family-a-m;
24
+ font-weight: $font-weight-medium;
25
+ }
26
+
27
+ @mixin font-semibold() {
28
+ font-family: $font-family-a-sb;
29
+ font-weight: $font-weight-semibold;
30
+ }
31
+
32
+ @mixin font-bold() {
33
+ font-family: $font-family-a-b;
34
+ font-weight: $font-weight-bold;
35
+ }
36
+
37
+ @mixin font-2-regular() {
38
+ font-family: $font-family-b-r;
39
+ }
40
+
41
+ @mixin font-2-medium() {
42
+ font-family: $font-family-b-m;
43
+ }
44
+
45
+ @mixin font-2-bold() {
46
+ font-family: $font-family-b-b;
47
+ }
48
+
49
+ @mixin font-3-regular() {
50
+ font-family: $font-family-c-r;
51
+ }
52
+
53
+ @mixin font-3-medium() {
54
+ font-family: $font-family-c-m;
55
+ }
56
+
57
+ @mixin font-3-bold() {
58
+ font-family: $font-family-c-b;
59
+ }
60
+
61
+ @mixin fonters($param) {
62
+ @if $param== 'light' {
63
+ @include font-light;
64
+ } @else if $param== 'regular' {
65
+ @include font-regular;
66
+ } @else if $param== 'medium' {
67
+ @include font-medium;
68
+ } @else if $param== 'bold' {
69
+ @include font-bold;
70
+ } @else if $param== 'regular2' {
71
+ @include font-2-regular;
72
+ } @else if $param== 'medium2' {
73
+ @include font-2-medium;
74
+ } @else if $param== 'bold2' {
75
+ @include font-2-bold;
76
+ } @else if $param== 'regular3' {
77
+ @include font-3-regular;
78
+ } @else if $param== 'medium3' {
79
+ @include font-3-medium;
80
+ } @else if $param== 'bold3' {
81
+ @include font-3-bold;
82
+ }
83
+ }
84
+
85
+ @mixin typesFixers($headersFixers, $cssattr) {
86
+ @for $i from 1 through 1 {
87
+ @each $name, $fsize in $headersFixers {
88
+ $fontsize: nth($fsize, $i);
89
+ $fontheight: nth($fsize, 2);
90
+ .text-#{$name}-r {
91
+ @include fonters(regular);
92
+
93
+ #{$cssattr }: $fontsize;
94
+ line-height: $fontheight;
95
+ }
96
+ .text-#{$name}-m {
97
+ @include fonters(medium);
98
+
99
+ #{$cssattr }: $fontsize;
100
+ line-height: $fontheight;
101
+ }
102
+ .text-#{$name}-b {
103
+ @include fonters(bold);
104
+
105
+ #{$cssattr }: $fontsize;
106
+ line-height: $fontheight;
107
+ }
108
+ .text-#{$name}-2r {
109
+ @include fonters('regular2');
110
+
111
+ #{$cssattr }: $fontsize;
112
+ line-height: $fontheight;
113
+ }
114
+ .text-#{$name}-2b {
115
+ @include fonters('bold2');
116
+
117
+ #{$cssattr }: $fontsize;
118
+ line-height: $fontheight;
119
+ }
120
+ }
121
+ }
122
+ }
123
+
124
+ @mixin random-bgr() {
125
+ background: rgb(random(255) random(255) random(255));
126
+ }
127
+
128
+ @mixin fixed-bgr() {
129
+ background: red;
130
+ }
131
+
132
+ @function unity($value) {
133
+ @return math.div($value, $value * 0 + 1);
134
+ }
135
+
136
+ @mixin typesFluids($headersFluids) {
137
+ @for $i from 1 through 1 {
138
+ @each $name, $fsize in $headersFluids {
139
+ $u1: unit($min-vw);
140
+ $u2: unit($max-vw);
141
+ $min-font-size: nth($fsize, $i);
142
+ $max-font-size: nth($fsize, 2);
143
+ $fluid-line-height: nth($fsize, 3);
144
+ $u3: unit($min-font-size);
145
+ $u4: unit($max-font-size);
146
+ $u5: nth($fsize, 3);
147
+
148
+ .fluid-#{$name}-l {
149
+ @include font-light;
150
+
151
+ @if $u1==$u2 and $u1==$u3 and $u1==$u4 {
152
+ & {
153
+ font-size: $min-font-size;
154
+ line-height: $u5;
155
+
156
+ @media (min-width: $min-vw) {
157
+ font-size: calc(
158
+ #{$min-font-size} + #{unity($max-font-size - $min-font-size)} *
159
+ ((100vw - #{$min-vw}) / #{unity($max-vw - $min-vw)})
160
+ );
161
+ line-height: $fluid-line-height;
162
+ }
163
+
164
+ @media (min-width: $max-vw) {
165
+ font-size: $max-font-size;
166
+ line-height: $fluid-line-height;
167
+ }
168
+ }
169
+ }
170
+ }
171
+
172
+ .fluid-#{$name}-r {
173
+ @include font-regular;
174
+
175
+ @if $u1==$u2 and $u1==$u3 and $u1==$u4 {
176
+ & {
177
+ font-size: $min-font-size;
178
+ line-height: $u5;
179
+
180
+ @media (min-width: $min-vw) {
181
+ font-size: calc(
182
+ #{$min-font-size} + #{unity($max-font-size - $min-font-size)} *
183
+ ((100vw - #{$min-vw}) / #{unity($max-vw - $min-vw)})
184
+ );
185
+ line-height: $fluid-line-height;
186
+ }
187
+
188
+ @media (min-width: $max-vw) {
189
+ font-size: $max-font-size;
190
+ line-height: $fluid-line-height;
191
+ }
192
+ }
193
+ }
194
+ }
195
+ .fluid-#{$name}-m {
196
+ @include font-medium;
197
+
198
+ @if $u1==$u2 and $u1==$u3 and $u1==$u4 {
199
+ & {
200
+ font-size: $min-font-size;
201
+ line-height: $u5;
202
+
203
+ @media (min-width: $min-vw) {
204
+ font-size: calc(
205
+ #{$min-font-size} + #{unity($max-font-size - $min-font-size)} *
206
+ ((100vw - #{$min-vw}) / #{unity($max-vw - $min-vw)})
207
+ );
208
+ line-height: $fluid-line-height;
209
+ }
210
+
211
+ @media (min-width: $max-vw) {
212
+ font-size: $max-font-size;
213
+ line-height: $fluid-line-height;
214
+ }
215
+ }
216
+ }
217
+ }
218
+
219
+ .fluid-#{$name}-sb {
220
+ @include font-semibold;
221
+
222
+ @if $u1==$u2 and $u1==$u3 and $u1==$u4 {
223
+ & {
224
+ font-size: $min-font-size;
225
+ line-height: $u5;
226
+
227
+ @media (min-width: $min-vw) {
228
+ font-size: calc(
229
+ #{$min-font-size} + #{unity($max-font-size - $min-font-size)} *
230
+ ((100vw - #{$min-vw}) / #{unity($max-vw - $min-vw)})
231
+ );
232
+ line-height: $fluid-line-height;
233
+ }
234
+
235
+ @media (min-width: $max-vw) {
236
+ font-size: $max-font-size;
237
+ line-height: $fluid-line-height;
238
+ }
239
+ }
240
+ }
241
+ }
242
+
243
+ .fluid-#{$name}-b {
244
+ @include font-bold;
245
+
246
+ @if $u1==$u2 and $u1==$u3 and $u1==$u4 {
247
+ & {
248
+ font-size: $min-font-size;
249
+ line-height: $u5;
250
+
251
+ @media (min-width: $min-vw) {
252
+ font-size: calc(
253
+ #{$min-font-size} + #{unity($max-font-size - $min-font-size)} *
254
+ ((100vw - #{$min-vw}) / #{unity($max-vw - $min-vw)})
255
+ );
256
+ line-height: $fluid-line-height;
257
+ }
258
+
259
+ @media (min-width: $max-vw) {
260
+ font-size: $max-font-size;
261
+ line-height: $fluid-line-height;
262
+ }
263
+ }
264
+ }
265
+ }
266
+ }
267
+ }
268
+ }
269
+
270
+ @mixin ratio($width, $height) {
271
+ position: relative;
272
+ overflow: hidden;
273
+
274
+ &::before {
275
+ display: block;
276
+ content: '';
277
+ width: 100%;
278
+ padding-top: math.div($height, $width) * 100%;
279
+ }
280
+
281
+ .content {
282
+ position: absolute;
283
+ top: 0;
284
+ left: 0;
285
+ right: 0;
286
+ bottom: 0;
287
+ }
288
+
289
+ .rat-content {
290
+ position: absolute;
291
+ top: 0;
292
+ left: 0;
293
+ right: 0;
294
+ bottom: 0;
295
+ }
296
+ }
297
+
298
+ @mixin bleed($margin) {
299
+ .bleed-#{$margin} {
300
+ padding: 0 math.div($margin, 2) + px 0 math.div($margin, 2) + px;
301
+ overflow: hidden;
302
+
303
+ .container-fluid {
304
+ margin-left: -#{math.div($margin, 2)}+ px;
305
+ margin-right: -#{math.div($margin, 2)}+ px;
306
+ padding: 0 math.div($margin, 2) + px 0 math.div($margin, 2) + px;
307
+ }
308
+
309
+ > .row {
310
+ margin-left: 0;
311
+ margin-right: 0;
312
+ box-sizing: border-box;
313
+ display: flex;
314
+ -webkit-box-flex: 0;
315
+ flex: 0 1 auto;
316
+ -webkit-box-orient: horizontal;
317
+ -webkit-box-direction: normal;
318
+ flex-flow: row wrap;
319
+ flex-wrap: wrap;
320
+ }
321
+
322
+ > [class*='col-'],
323
+ > .col {
324
+ padding: math.div($margin, 2) + px;
325
+ box-sizing: border-box;
326
+ }
327
+ }
328
+
329
+ .single {
330
+ flex-basis: 50%;
331
+ max-width: 50%;
332
+ }
333
+
334
+ .double {
335
+ flex-basis: 100%;
336
+ max-width: 100%;
337
+ }
338
+
339
+ @media (min-width: $break-sm) {
340
+ .single {
341
+ flex-basis: 25%;
342
+ max-width: 25%;
343
+ }
344
+
345
+ .double {
346
+ flex-basis: 50%;
347
+ max-width: 50%;
348
+ }
349
+ }
350
+ }
351
+
352
+ @mixin types($breakpoints, $headers, $cssattr) {
353
+ @for $i from 1 through length($breakpoints) {
354
+ @media (min-width: nth(map-values($breakpoints), $i)) {
355
+ @each $name, $fsize in $headers {
356
+ $fontsize: nth($fsize, $i);
357
+ $fontheight: nth($fsize, 5);
358
+ $fontweight: nth($fsize, 6);
359
+ .#{$name} {
360
+ @if nth(map-values($breakpoints), $i) ==1px {
361
+ @include fonters($fontweight);
362
+ }
363
+
364
+ #{$cssattr }: $fontsize;
365
+ line-height: $fontheight;
366
+ }
367
+ }
368
+ }
369
+ }
370
+ }
371
+
372
+ @mixin space($breakpoints, $paddings, $cssattr) {
373
+ @for $i from 1 through length($breakpoints) {
374
+ @media (min-width: nth(map-values($breakpoints), $i)) {
375
+ @each $name, $pad in $paddings {
376
+ $padding: nth($pad, $i);
377
+ .#{$name} {
378
+ #{$cssattr }: $padding;
379
+ }
380
+ }
381
+ }
382
+ }
383
+ }
384
+
385
+ @mixin button-variant($color, $background, $border) {
386
+ color: $color;
387
+ background-color: $background;
388
+ border-color: $border;
389
+
390
+ &:focus,
391
+ &.focus {
392
+ color: $color;
393
+ background-color: darken($background, 10%);
394
+ border-color: darken($border, 25%);
395
+ }
396
+
397
+ &:hover {
398
+ color: $color;
399
+ background-color: darken($background, 10%);
400
+ border-color: darken($border, 12%);
401
+ }
402
+
403
+ &:active,
404
+ &.active,
405
+ .open > &.dropdown-toggle {
406
+ background-image: none;
407
+ color: $color;
408
+ background-color: darken($background, 10%);
409
+ border-color: darken($border, 12%);
410
+ &:hover,
411
+ &:focus,
412
+ &.focus {
413
+ color: $color;
414
+ background-color: darken($background, 17%);
415
+ border-color: darken($border, 25%);
416
+ }
417
+ }
418
+
419
+ &.disabled,
420
+ &[disabled],
421
+ fieldset[disabled] & {
422
+ &:hover,
423
+ &:focus,
424
+ &.focus {
425
+ background-color: $background;
426
+ border-color: $border;
427
+ }
428
+ }
429
+
430
+ .badge {
431
+ color: $background;
432
+ background-color: $color;
433
+ }
434
+ }
435
+
436
+ @mixin button-size(
437
+ $padding-vertical,
438
+ $padding-horizontal,
439
+ $font-size,
440
+ $line-height,
441
+ $border-radius
442
+ ) {
443
+ padding: $padding-vertical $padding-horizontal;
444
+ font-size: $font-size;
445
+ line-height: $line-height;
446
+ border-radius: $border-radius;
447
+ }
448
+
449
+ @mixin box-shadow($shadow...) {
450
+ box-shadow: $shadow;
451
+ }
452
+
453
+ @mixin box-sizing($boxmodel) {
454
+ box-sizing: $boxmodel;
455
+ }
456
+
457
+ @mixin content-columns($column-count, $column-gap: $grid-gutter-width) {
458
+ column-count: $column-count;
459
+ column-gap: $column-gap;
460
+ }
461
+
462
+ @mixin tab-focus() {
463
+ border-color: transparent;
464
+ outline: thin dotted;
465
+ box-shadow: none;
466
+ outline-offset: -2px;
467
+ }
468
+
469
+ @mixin calc($property, $expression) {
470
+ #{$property}: -moz-calc(#{$expression});
471
+ #{$property}: -webkit-calc(#{$expression});
472
+ #{$property}: calc(#{$expression});
473
+ }
474
+
475
+ @mixin ellipsis() {
476
+ text-overflow: ellipsis;
477
+ overflow: hidden;
478
+ white-space: nowrap;
479
+ }
480
+
481
+ @mixin appearance() {
482
+ appearance: none;
483
+ }
484
+
485
+ @mixin media($consulta) {
486
+ $media-max-xs: '(max-width : 480px)';
487
+ $media-max-sm: '(max-width : 767px)';
488
+ $media-max-md: '(max-width : 991px)';
489
+ $media-max-lg: '(max-width : 1279px)';
490
+
491
+ $media-xxs: '(min-width : 300px)';
492
+ $media-xs: '(min-width : 480px)';
493
+ $media-sm: '(min-width: 768px)';
494
+ $media-md: '(min-width: 992px)';
495
+ $media-md-2: '(min-width: 1025px)';
496
+ $media-lg: '(min-width: 1280px)';
497
+ $media-xl: '(min-width: 1500px)';
498
+ $media-xxl: '(min-width: 1600px)';
499
+ $portrait: '(min-width: 768px) and (max-width: 991px)';
500
+ $landscape: '(min-width: 992px) and (max-width: 1279px)';
501
+ $landscape-2: '(min-width: 1280px) and (max-width: 1560px)';
502
+
503
+ @if $consulta==xxs {
504
+ @media #{$media-xxs} {
505
+ @content;
506
+ }
507
+ } @else if $consulta==max-xs {
508
+ @media #{$media-max-xs} {
509
+ @content;
510
+ }
511
+ } @else if $consulta==max-sm {
512
+ @media #{$media-max-sm} {
513
+ @content;
514
+ }
515
+ } @else if $consulta==max-md {
516
+ @media #{$media-max-md} {
517
+ @content;
518
+ }
519
+ } @else if $consulta==max-lg {
520
+ @media #{$media-max-lg} {
521
+ @content;
522
+ }
523
+ } @else if $consulta==xs {
524
+ @media #{$media-xs} {
525
+ @content;
526
+ }
527
+ } @else if $consulta==sm {
528
+ @media #{$media-sm} {
529
+ @content;
530
+ }
531
+ } @else if $consulta==md {
532
+ @media #{$media-md} {
533
+ @content;
534
+ }
535
+ } @else if $consulta==md-2 {
536
+ @media #{$media-md-2} {
537
+ @content;
538
+ }
539
+ } @else if $consulta==lg {
540
+ @media #{$media-lg} {
541
+ @content;
542
+ }
543
+ } @else if $consulta==xl {
544
+ @media #{$media-xl} {
545
+ @content;
546
+ }
547
+ } @else if $consulta==xxl {
548
+ @media #{$media-xxl} {
549
+ @content;
550
+ }
551
+ } @else if $consulta==portrait {
552
+ @media #{$portrait} {
553
+ @content;
554
+ }
555
+ } @else if $consulta==land {
556
+ @media #{$landscape} {
557
+ @content;
558
+ }
559
+ } @else if $consulta==land-2 {
560
+ @media #{$landscape-2} {
561
+ @content;
562
+ }
563
+ } @else if $consulta == retina {
564
+ @media only screen and (-webkit-min-device-pixel-ratio: 2),
565
+ only screen and (min--moz-device-pixel-ratio: 2),
566
+ only screen and (-o-min-device-pixel-ratio: 2/1),
567
+ only screen and (min-device-pixel-ratio: 2),
568
+ only screen and (min-resolution: 192dpi),
569
+ only screen and (min-resolution: 2dppx) {
570
+ @content;
571
+ }
572
+ }
573
+ }
574
+
575
+ @function calculate-rem($size) {
576
+ $remSize: $size / 16px;
577
+
578
+ @return $remSize * 1rem;
579
+ }
580
+
581
+ @mixin font-size($size) {
582
+ font-size: $size;
583
+ font-size: calculate-rem($size);
584
+ }
585
+
586
+ @mixin opacity($opacity) {
587
+ opacity: $opacity;
588
+
589
+ $opacity-ie: $opacity * 100;
590
+
591
+ filter: alpha(opacity=$opacity-ie);
592
+ }
593
+
594
+ $spritegrid: 32;
595
+ $spriteWidth: 600;
596
+ $spriteHeight: 400;
597
+
598
+ @mixin placeholder() {
599
+ &::input-placeholder {
600
+ @content;
601
+ }
602
+ &:placeholder {
603
+ @content;
604
+ }
605
+ &::placeholder {
606
+ @content;
607
+ }
608
+ &:input-placeholder {
609
+ @content;
610
+ }
611
+ }
612
+
613
+ @mixin transition($transition, $time, $timing: ease) {
614
+ transition: $transition $time $timing;
615
+ }
616
+
617
+ @mixin absolute-vertical-center() {
618
+ position: absolute;
619
+ top: 50%;
620
+ transform: translateY(-50%);
621
+ }
622
+
623
+ @mixin absolute-vertical-bottom() {
624
+ position: absolute;
625
+ bottom: 10%;
626
+ }
627
+
628
+ @mixin rgba($property, $background: #000000, $opacity: 0.75, $mix: white) {
629
+ #{$property}: mix($background, $mix, $opacity * 100%);
630
+ #{$property}: rgba($background, $opacity);
631
+ }
632
+
633
+ @function unicode($str) {
634
+ @return unquote('"') + unquote(str-insert($str, '\\', 1)) + unquote('"');
635
+ }
636
+
637
+ @mixin mintypes($minbreakpoints, $headers, $cssattr) {
638
+ @for $i from 1 through length($minbreakpoints) {
639
+ @media (min-width: nth(map-values($minbreakpoints), $i)) {
640
+ @each $name, $fsize in $headers {
641
+ $fontsize: nth($fsize, $i);
642
+ $fontheight: nth($fsize, 3);
643
+ $fontweight: nth($fsize, 4);
644
+ .#{$name} {
645
+ @if nth(map-values($minbreakpoints), $i) ==1px {
646
+ @include fonters($fontweight);
647
+ }
648
+
649
+ #{$cssattr }: $fontsize;
650
+ line-height: $fontheight;
651
+ }
652
+ }
653
+ }
654
+ }
655
+ }
656
+
657
+ @mixin debug-types($headers) {
658
+ @for $i from 1 through length($headers) {
659
+ .#{nth(map-keys($headers), $i)} {
660
+ position: relative;
661
+ border: 1px solid #96c3ac;
662
+ &::after {
663
+ content: '#{nth(map-keys($headers), $i)} ' !important;
664
+ position: absolute;
665
+
666
+ @include fixed-bgr;
667
+
668
+ opacity: 0.8;
669
+ white-space: nowrap;
670
+ color: $c-white;
671
+ padding: 2px;
672
+ left: 0;
673
+ font-size: 10px;
674
+ font-weight: bold;
675
+ }
676
+ }
677
+ }
678
+ }
679
+
680
+ @mixin heights-mix() {
681
+ @each $height-name in map-keys($heights) {
682
+ $values: map-get($heights, $height-name);
683
+ .#{$height-name} {
684
+ min-height: nth($values, 1);
685
+
686
+ @media (min-width: $break-sm) {
687
+ min-height: nth($values, 2);
688
+ }
689
+ }
690
+ }
691
+ }