monkey-style-guide 21.2.7 → 21.2.8

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.
Files changed (30) hide show
  1. package/README.md +24 -24
  2. package/assets/scss/autocomplete/_index.scss +6 -6
  3. package/assets/scss/autocomplete/_styles.scss +149 -149
  4. package/assets/scss/directives/_badge.scss +48 -48
  5. package/assets/scss/directives/_index.scss +8 -8
  6. package/assets/scss/directives/_popover.scss +102 -102
  7. package/assets/scss/directives/_styles.scss +99 -99
  8. package/assets/scss/input/_index.scss +6 -6
  9. package/assets/scss/input/_styles.scss +67 -67
  10. package/assets/scss/partials/_breakpoints.scss +145 -145
  11. package/assets/scss/partials/_grid-system.scss +5069 -5069
  12. package/assets/scss/partials/_helper-classes.scss +373 -373
  13. package/assets/scss/partials/_icons.scss +38 -38
  14. package/assets/scss/partials/_index.scss +14 -14
  15. package/assets/scss/partials/_popover.scss +3 -3
  16. package/assets/scss/partials/_scrollbars.scss +29 -29
  17. package/assets/scss/partials/_skeleton-loading.scss +95 -95
  18. package/assets/scss/partials/_style-reset.scss +191 -191
  19. package/assets/scss/partials/_variables.scss +95 -95
  20. package/assets/scss/table/_index.scss +6 -6
  21. package/assets/scss/table/_styles.scss +11 -11
  22. package/assets/scss/theme.scss +14 -14
  23. package/assets/scss/typography/_index.scss +6 -6
  24. package/assets/scss/typography/_styles.scss +60 -60
  25. package/fesm2022/monkey-style-guide.mjs +2658 -2049
  26. package/fesm2022/monkey-style-guide.mjs.map +1 -1
  27. package/monkey-style-guide-21.2.8.tgz +0 -0
  28. package/package.json +1 -1
  29. package/types/monkey-style-guide.d.ts +351 -103
  30. package/monkey-style-guide-21.2.7.tgz +0 -0
@@ -1,60 +1,60 @@
1
- * {
2
- font-family: var(--mecx-font-name), arial, sans-serif;
3
- -webkit-font-smoothing: auto;
4
- -moz-osx-font-smoothing: auto;
5
-
6
- a {
7
- text-decoration: none !important;
8
- }
9
- }
10
-
11
- .mecx-title-page {
12
- color: var(--mecx-color-gray-900);
13
- font-size: 20px;
14
- font-style: normal;
15
- font-weight: 700;
16
- line-height: 24px;
17
- }
18
-
19
- .mecx-subtitle-page {
20
- color: var(--mecx-color-gray-700);
21
- font-size: 14px;
22
- font-style: normal;
23
- font-weight: 400;
24
- line-height: 24px;
25
- letter-spacing: 0.14px;
26
- }
27
-
28
- .mecx-link {
29
- display: inline-flex;
30
- align-items: center;
31
- gap: 4px;
32
- color: var(--mecx-color-gray-900) !important;
33
-
34
- &:hover {
35
- color: var(--mecx-color-theme-main) !important;
36
- }
37
-
38
- &:active {
39
- transform: scale(0.96);
40
- }
41
-
42
- span {
43
- text-decoration: underline !important;
44
- }
45
-
46
- i {
47
- display: flex;
48
- align-items: center;
49
- }
50
-
51
- &.disabled {
52
- pointer-events: none;
53
-
54
- span {
55
- color: var(--mecx-color-gray-400);
56
- font-weight: 400;
57
- cursor: not-allowed;
58
- }
59
- }
60
- }
1
+ * {
2
+ font-family: var(--mecx-font-name), arial, sans-serif;
3
+ -webkit-font-smoothing: auto;
4
+ -moz-osx-font-smoothing: auto;
5
+
6
+ a {
7
+ text-decoration: none !important;
8
+ }
9
+ }
10
+
11
+ .mecx-title-page {
12
+ color: var(--mecx-color-gray-900);
13
+ font-size: 20px;
14
+ font-style: normal;
15
+ font-weight: 700;
16
+ line-height: 24px;
17
+ }
18
+
19
+ .mecx-subtitle-page {
20
+ color: var(--mecx-color-gray-700);
21
+ font-size: 14px;
22
+ font-style: normal;
23
+ font-weight: 400;
24
+ line-height: 24px;
25
+ letter-spacing: 0.14px;
26
+ }
27
+
28
+ .mecx-link {
29
+ display: inline-flex;
30
+ align-items: center;
31
+ gap: 4px;
32
+ color: var(--mecx-color-gray-900) !important;
33
+
34
+ &:hover {
35
+ color: var(--mecx-color-theme-main) !important;
36
+ }
37
+
38
+ &:active {
39
+ transform: scale(0.96);
40
+ }
41
+
42
+ span {
43
+ text-decoration: underline !important;
44
+ }
45
+
46
+ i {
47
+ display: flex;
48
+ align-items: center;
49
+ }
50
+
51
+ &.disabled {
52
+ pointer-events: none;
53
+
54
+ span {
55
+ color: var(--mecx-color-gray-400);
56
+ font-weight: 400;
57
+ cursor: not-allowed;
58
+ }
59
+ }
60
+ }