@appartmint/mint 2.7.10 → 2.8.1

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": "2.7.10",
4
+ "version": "2.8.1",
5
5
  "license": "MIT",
6
6
  "description": "The front-end TS/SCSS framework of App Art Mint",
7
7
  "keywords": [
@@ -236,6 +236,8 @@ body {
236
236
  align-items: center;
237
237
  gap: 1rem;
238
238
  width: auto;
239
+ height: css-var(header-height);
240
+ padding: 0.25rem;
239
241
  text-decoration: none;
240
242
  white-space: nowrap;
241
243
 
@@ -249,8 +251,8 @@ body {
249
251
  }
250
252
 
251
253
  img {
252
- max-height: css-var(header-height);
253
254
  width: auto;
255
+ height: 100%;
254
256
  }
255
257
  }
256
258
 
@@ -9,14 +9,20 @@
9
9
 
10
10
  /// Input Styles
11
11
  input,
12
- textarea,
13
- select {
12
+ select,
13
+ textarea {
14
14
  width: 100%;
15
15
  padding: 0.5rem;
16
16
  border: 2px solid #ccc;
17
17
  border-radius: $border-radius;
18
18
  }
19
19
 
20
+ input {
21
+ &[type="file"] {
22
+ cursor: pointer;
23
+ }
24
+ }
25
+
20
26
  select {
21
27
  @include break(xs) {
22
28
  width: auto;