@semanticus/semanticus-css 3.2.0 → 3.2.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": "@semanticus/semanticus-css",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.1",
|
|
4
4
|
"description": "lightweight CSS framework that prioritizes semantic HTML and ARIA-focused accessibility, with a small set of atomic utilities",
|
|
5
5
|
"author": "Joao Goncalves",
|
|
6
6
|
"style": "./dist/semanticus.css",
|
package/src/index.css
CHANGED
|
@@ -8,17 +8,14 @@ hgroup {
|
|
|
8
8
|
color: var(--primary-color);
|
|
9
9
|
text-transform: uppercase;
|
|
10
10
|
letter-spacing: 0.1em;
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
& > :where(h1, h2, h3, h4, h5, h6) + p {
|
|
14
|
+
color: var(--color-muted);
|
|
15
|
+
--font-weight: unset;
|
|
13
16
|
}
|
|
14
17
|
|
|
15
18
|
& > * {
|
|
16
19
|
margin-block: 0 !important;
|
|
17
|
-
|
|
18
|
-
&:not(:first-child):last-child {
|
|
19
|
-
color: var(--color-muted);
|
|
20
|
-
--font-weight: unset;
|
|
21
|
-
font-size: 1rem;
|
|
22
|
-
}
|
|
23
20
|
}
|
|
24
21
|
}
|