@appartmint/mint 0.10.18 → 0.10.19

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@appartmint/mint",
3
3
  "author": "App Art Mint LLC",
4
- "version": "0.10.18",
4
+ "version": "0.10.19",
5
5
  "license": "MIT",
6
6
  "description": "The front-end TS/SCSS framework of App Art Mint",
7
7
  "keywords": [
@@ -123,10 +123,14 @@
123
123
 
124
124
  /// Pill buttons
125
125
  #{class(pill)} {
126
- min-width: 5rem;
127
126
  padding: 0 $btn-padding-adjust;
128
127
  line-height: 2;
129
128
  }
129
+ a, button {
130
+ &#{class(pill)} {
131
+ min-width: 5rem;
132
+ }
133
+ }
130
134
 
131
135
  /// A list of buttons
132
136
  #{class(buttons)} {
@@ -153,6 +157,18 @@
153
157
  }
154
158
  }
155
159
 
160
+ #{class(grid)}#{class('3')},
161
+ #{class(grid)}#{class('4')} {
162
+ #{class(buttons)} {
163
+ & > * {
164
+ @include break(xs) {
165
+ width: 100%;
166
+ margin: 0.5rem 0;
167
+ }
168
+ }
169
+ }
170
+ }
171
+
156
172
  /// Buttons within a paragraph
157
173
  p {
158
174
  #{class(pill)} {
@@ -160,3 +160,43 @@
160
160
  }
161
161
  }
162
162
  }
163
+
164
+ #{class(grid)}#{class('3')},
165
+ #{class(grid)}#{class('4')} {
166
+ #{class(card)} {
167
+ flex-direction: column !important;
168
+
169
+ &>#{class(image)},
170
+ &>mint-image #{class(image)} {
171
+ overflow: hidden;
172
+
173
+ @include break(sm) {
174
+ width: 100%;
175
+ }
176
+
177
+ &+#{class(content)} {
178
+ @include break(sm) {
179
+ width: 100%;
180
+ }
181
+ }
182
+ }
183
+
184
+ #{class(content)} {
185
+ height: 100%;
186
+ }
187
+
188
+ #{class(title)} {
189
+ @include break(xs) {
190
+ flex-direction: column;
191
+ }
192
+ }
193
+
194
+ #{class(buttons)} {
195
+ align-items: flex-end;
196
+
197
+ #{class(btn)} {
198
+ width: 100%;
199
+ }
200
+ }
201
+ }
202
+ }