mf-styling 3.1.0 → 3.1.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,6 +1,6 @@
1
1
  {
2
2
  "name": "mf-styling",
3
- "version": "3.1.0",
3
+ "version": "3.1.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -55,10 +55,10 @@
55
55
  "devDependencies": {
56
56
  "@semantic-release/commit-analyzer": "^11.0.0",
57
57
  "@semantic-release/exec": "^6.0.3",
58
- "@semantic-release/release-notes-generator": "^12.0.0",
58
+ "@semantic-release/release-notes-generator": "^12.0.1",
59
59
  "autoprefixer": "^10.4.15",
60
- "npm-pkgbuild": "^12.3.1",
61
- "semantic-release": "^22.0.5",
60
+ "npm-pkgbuild": "^13.0.2",
61
+ "semantic-release": "^22.0.7",
62
62
  "stylelint": "^15.11.0",
63
63
  "stylelint-config-standard": "^34.0.0",
64
64
  "testcafe": "^3.3.0",
package/src/nav.css CHANGED
@@ -41,11 +41,9 @@ nav ul {
41
41
  position: relative;
42
42
  margin-top: 0;
43
43
  margin-left: auto;
44
- margin-block-start: 0;
45
- margin-block-end: 0;
44
+ margin-block: 0 0;
46
45
  margin-inline-end: 0;
47
- padding-inline-start: 0;
48
- padding-inline-end: var(--nav-side-padding);
46
+ padding-inline: 0 var(--nav-side-padding);
49
47
  }
50
48
 
51
49
  nav ul.left {
package/src/table.css CHANGED
@@ -17,25 +17,24 @@ td {
17
17
  padding: var(--table-padding);
18
18
  }
19
19
 
20
+ .bordered :is(td, th) {
21
+ border: 1px solid var(--color-neutral-300);
22
+ }
20
23
 
21
24
  .bordered-light-left {
22
- border-left: 1px dotted var(--color-neutral-50);
25
+ border-left: 1px dotted var(--color-neutral-200) !important;
23
26
  }
24
27
 
25
28
  .bordered-light-right {
26
- border-right: 1px dotted var(--color-neutral-50);
29
+ border-right: 1px dotted var(--color-neutral-200) !important;
27
30
  }
28
31
 
29
32
  .bordered-light-bottom {
30
- border-bottom: 1px dotted var(--color-neutral-50);
33
+ border-bottom: 1px dotted var(--color-neutral-200) !important;
31
34
  }
32
35
 
33
36
  .bordered-light-top {
34
- border-top: 1px dotted var(--color-neutral-50);
35
- }
36
-
37
- .bordered :is(td, th) {
38
- border: 1px solid var(--color-neutral-300);
37
+ border-top: 1px dotted var(--color-neutral-200) !important;
39
38
  }
40
39
 
41
40
  .striped tr:nth-of-type(odd) {