coer-elements 2.0.56 → 2.0.57

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.
@@ -43,6 +43,33 @@
43
43
  }
44
44
 
45
45
 
46
+ // flex align-items
47
+ @each $key, $value in (
48
+ 'top' : flex-start,
49
+ 'middle': center,
50
+ 'bottom': flex-end
51
+ ) {
52
+ .#{$breakpoint}align-items-#{$key} {
53
+ align-items: $value !important;
54
+ }
55
+ }
56
+
57
+
58
+ // flex justify-content
59
+ @each $key, $value in (
60
+ 'left' : flex-start,
61
+ 'center' : center,
62
+ 'right' : flex-end,
63
+ 'between': space-between,
64
+ 'around' : space-around,
65
+ 'evenly' : space-evenly
66
+ ) {
67
+ .#{$breakpoint}justify-content-#{$key} {
68
+ justify-content: $value !important;
69
+ }
70
+ }
71
+
72
+
46
73
  // flex direction
47
74
  @each $key, $value in (
48
75
  'row': row,