claritas-web-framework 8.0.7 → 8.0.9
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/dist/index.css +1 -1
- package/package.json +3 -3
- package/sass/_reboot.scss +6 -29
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claritas-web-framework",
|
|
3
|
-
"version": "8.0.
|
|
4
|
-
"updated": "
|
|
3
|
+
"version": "8.0.9",
|
|
4
|
+
"updated": "01/08/2023",
|
|
5
5
|
"description": "The CSS framework built for Claritas front end.",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"scripts": {
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"html-webpack-plugin": "^5.5.3",
|
|
24
24
|
"mini-css-extract-plugin": "^2.7.6",
|
|
25
25
|
"prettier": "^3.0.0",
|
|
26
|
-
"sass": "^1.64.
|
|
26
|
+
"sass": "^1.64.2",
|
|
27
27
|
"sass-loader": "^13.3.2",
|
|
28
28
|
"stylelint": "^15.10.2",
|
|
29
29
|
"stylelint-config-standard": "^34.0.0",
|
package/sass/_reboot.scss
CHANGED
|
@@ -23,18 +23,12 @@ hr {
|
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
%heading {
|
|
26
|
-
margin
|
|
26
|
+
margin: 0 0 0.5rem;
|
|
27
27
|
font-family: $headings-font-family;
|
|
28
28
|
font-style: $headings-font-style;
|
|
29
29
|
font-weight: $headings-font-weight;
|
|
30
30
|
line-height: $headings-line-height;
|
|
31
31
|
color: $headings-color;
|
|
32
|
-
|
|
33
|
-
@if $enable-margins {
|
|
34
|
-
margin-bottom: 0.5rem;
|
|
35
|
-
} @else {
|
|
36
|
-
margin-bottom: 0;
|
|
37
|
-
}
|
|
38
32
|
}
|
|
39
33
|
|
|
40
34
|
h1 {
|
|
@@ -68,13 +62,7 @@ h6 {
|
|
|
68
62
|
}
|
|
69
63
|
|
|
70
64
|
p {
|
|
71
|
-
margin
|
|
72
|
-
|
|
73
|
-
@if $enable-margins {
|
|
74
|
-
margin-bottom: 0.5rem;
|
|
75
|
-
} @else {
|
|
76
|
-
margin-bottom: 0;
|
|
77
|
-
}
|
|
65
|
+
margin: 0 0 0.5rem;
|
|
78
66
|
}
|
|
79
67
|
|
|
80
68
|
abbr[title] {
|
|
@@ -83,14 +71,9 @@ abbr[title] {
|
|
|
83
71
|
}
|
|
84
72
|
|
|
85
73
|
address {
|
|
74
|
+
margin: 0 0 1rem;
|
|
86
75
|
font-style: normal;
|
|
87
76
|
line-height: inherit;
|
|
88
|
-
|
|
89
|
-
@if $enable-margins {
|
|
90
|
-
margin-bottom: 1rem;
|
|
91
|
-
} @else {
|
|
92
|
-
margin-bottom: 0;
|
|
93
|
-
}
|
|
94
77
|
}
|
|
95
78
|
|
|
96
79
|
ol,
|
|
@@ -101,20 +84,14 @@ ul {
|
|
|
101
84
|
ol,
|
|
102
85
|
ul,
|
|
103
86
|
dl {
|
|
104
|
-
margin
|
|
105
|
-
|
|
106
|
-
@if $enable-margins {
|
|
107
|
-
margin-bottom: 1rem;
|
|
108
|
-
} @else {
|
|
109
|
-
margin-bottom: 0;
|
|
110
|
-
}
|
|
87
|
+
margin: 0 0 1rem;
|
|
111
88
|
}
|
|
112
89
|
|
|
113
90
|
ol ol,
|
|
114
91
|
ul ul,
|
|
115
92
|
ol ul,
|
|
116
93
|
ul ol {
|
|
117
|
-
margin
|
|
94
|
+
margin: 0;
|
|
118
95
|
}
|
|
119
96
|
|
|
120
97
|
dt {
|
|
@@ -226,7 +203,7 @@ fieldset {
|
|
|
226
203
|
legend {
|
|
227
204
|
float: left;
|
|
228
205
|
width: 100%;
|
|
229
|
-
margin
|
|
206
|
+
margin: 0 0 0.5rem;
|
|
230
207
|
font-size: var(--font-size-5);
|
|
231
208
|
line-height: inherit;
|
|
232
209
|
|