active_frontend 17.6.1 → 17.6.2

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: 5ec036b7fa352e04ca1cbea086034cd687e821f434356112f070955445369eba
4
- data.tar.gz: 53746b5300d4e2e97ab3a96c0cb91ffc3f26498768ef1fe7c6f9c9e8144451e7
3
+ metadata.gz: 947b7f81eb0fb31ec14194f1a69336a8bc2d68d59074df7fede6370423f6c892
4
+ data.tar.gz: 725fb46110d391eafe1ae0d5c387a03bcfebced446dc04640758fd953f385e96
5
5
  SHA512:
6
- metadata.gz: ab7d616f109bf69813cb69a5fc3c9b63c2d5d6e06aa289971f66c8c88dfa5274c133480f58365f996012879e06d831394f2650cc6f9d793d2cfbcff484c9958a
7
- data.tar.gz: a51a7f553ae9351540d3598ce1a2ec84f386c390dc759ad3b9954f6973cef23c345731b7bad9f9b8cf766f17e963f1d654594d4daacabf438ddea7982482d2a3
6
+ metadata.gz: 5cd3d63acab14c7aaa65f44a58cd6a15a3264d61181d2527e2fed4a62dc9060d4dc55e065a58db730ce11912938f24e0c35af5437fbb7fdc8416e81c43f9803b
7
+ data.tar.gz: a3ef0d53c03e2e348ce907e0b2e80fa4044549a9416bf80d1e6cbdbbbff5233cd3d0ea3474afefa5652ddff0995a2abc70ee7cbed5bc9a426bb5fe07fa15e15d
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActiveFrontend
4
- VERSION ||= '17.6.1'
4
+ VERSION ||= '17.6.2'
5
5
  end
@@ -119,7 +119,7 @@ $common-margins-and-paddings: (
119
119
  n: 0
120
120
  );
121
121
  $common-border-styles: dashed, dotted, double, none, solid;
122
- $common-display-types: block, inline, inline-block, none, table, table-cell, table-row;
122
+ $common-display-types: block, grid, inline, inline-block, inline-grid, none, table, table-cell, table-row;
123
123
  $common-visibility-types: collapse, hidden, visible;
124
124
 
125
125
  // Font
@@ -74,9 +74,26 @@
74
74
  }
75
75
  }
76
76
  .container-grid {
77
+ align-items: flex-start;
77
78
  display: grid;
78
79
  grid-gap: 20px;
79
80
  grid-template-columns: repeat(3, 1fr);
81
+
82
+ @each $name in center, flex-end, flex-start, space-around, space-between, stretch {
83
+ &.align-content-#{$name} { align-content: $name; }
84
+ }
85
+ @each $name in baseline, center, flex-end, flex-start, stretch {
86
+ &.align-items-#{$name} { align-items: $name; }
87
+ }
88
+ @each $name in column, column-reverse, row, row-reverse {
89
+ &.flex-direction-#{$name} { flex-direction: $name; }
90
+ }
91
+ @each $name in nowrap, wrap, wrap-reverse {
92
+ &.flex-wrap-#{$name} { flex-wrap: $name; }
93
+ }
94
+ @each $name in center, flex-end, flex-start, space-around, space-between, space-evenly {
95
+ &.justify-content-#{$name} { justify-content: $name; }
96
+ }
80
97
  }
81
98
 
82
99
  // Columns
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_frontend
3
3
  version: !ruby/object:Gem::Version
4
- version: 17.6.1
4
+ version: 17.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Gomez