io-sanita-theme 2.18.1 → 2.18.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.18.2](https://github.com/RedTurtle/io-sanita-theme/compare/2.18.1...2.18.2) (2025-07-03)
4
+
5
+ ### Bug Fixes
6
+
7
+ * headlines styles in richtext ([#99](https://github.com/RedTurtle/io-sanita-theme/issues/99)) ([3aa230f](https://github.com/RedTurtle/io-sanita-theme/commit/3aa230fc07a60b9cd5b3c82fa2e496ccd0f4edca))
8
+
9
+ ### Maintenance
10
+
11
+ * il rilascio su npm viene fattto con release-it da cli ([822d0b5](https://github.com/RedTurtle/io-sanita-theme/commit/822d0b57d9e3ca27cbb8cfe7d0d3299a8dd734c0))
12
+
3
13
  ## [2.18.1](https://github.com/RedTurtle/io-sanita-theme/compare/2.18.0...2.18.1) (2025-06-27)
4
14
 
5
15
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "io-sanita-theme",
3
- "version": "2.18.1",
3
+ "version": "2.18.2",
4
4
  "description": "io-sanita-theme: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "license": "MIT",
@@ -21,6 +21,50 @@
21
21
  }
22
22
  }
23
23
  }
24
+ #main-content-section.it-page-sections-container .richtext-blocks {
25
+ h1,
26
+ h2,
27
+ h3,
28
+ h4,
29
+ h5,
30
+ h6 {
31
+ font-family: var(--bs-font-sans-serif);
32
+ font-weight: 600;
33
+ }
34
+ h2 {
35
+ font-size: 1.5rem;
36
+ line-height: 2rem;
37
+ @include media-breakpoint-up(sm) {
38
+ font-size: 1.75rem;
39
+ line-height: 2rem;
40
+ }
41
+ }
42
+ h3 {
43
+ font-size: 1.25rem;
44
+ line-height: 1.5rem;
45
+ @include media-breakpoint-up(sm) {
46
+ font-size: 1.5rem;
47
+ line-height: 2rem;
48
+ }
49
+ }
50
+
51
+ h4 {
52
+ font-size: 1rem;
53
+ line-height: 1.5rem;
54
+ @include media-breakpoint-up(sm) {
55
+ font-size: 1.125rem;
56
+ }
57
+ }
58
+ h5,
59
+ h6 {
60
+ font-size: 1rem;
61
+ line-height: 1.5rem;
62
+ @include media-breakpoint-up(sm) {
63
+ font-size: 1.125rem;
64
+ }
65
+ font-weight: unset;
66
+ }
67
+ }
24
68
 
25
69
  // .is-block-description {
26
70
  // &,
@@ -1,27 +0,0 @@
1
- name: Release latest version on npm
2
- on:
3
- release:
4
- types: [released]
5
-
6
- jobs:
7
- release_to_npm:
8
- runs-on: ubuntu-latest
9
- permissions:
10
- contents: read
11
- id-token: write
12
- steps:
13
- - uses: actions/checkout@v4
14
-
15
- - uses: actions/setup-node@v4
16
- with:
17
- node-version: '18.x'
18
- registry-url: 'https://registry.npmjs.org'
19
-
20
- - run: npm install -g npm
21
-
22
- - run: yarn
23
-
24
- - name: Release to npm
25
- run: npm publish --provenance --access public
26
- env:
27
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}