codevdesign 0.0.86 → 0.0.88

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 (2) hide show
  1. package/assets/csqc.css +8 -7
  2. package/package.json +1 -1
package/assets/csqc.css CHANGED
@@ -2,20 +2,21 @@
2
2
 
3
3
  /* titre design qc avec ligne orange*/
4
4
  .headline {
5
- color: #223654 !important;
6
- font-weight: 600 !important;
5
+ color: #223654;
6
+ font-weight: 600;
7
+ display: inline-block; /* largeur du texte */
8
+ position: relative; /* pour positionner le ::after */
7
9
  }
8
10
 
9
- /* titre design qc avec ligne orange*/
10
- .headline:after {
11
+ .headline::after {
11
12
  content: '';
12
13
  display: block;
13
- margin: 0 0 8px 0;
14
- width: 2.8rem;
15
- padding-top: 0.3rem;
14
+ width: 2.8rem; /* ligne fixe */
16
15
  border-bottom: 3px solid #f09686;
16
+ margin-top: 0.3rem; /* espace entre texte et ligne */
17
17
  }
18
18
 
19
+
19
20
  /* pour afficher une étoile après le label*/
20
21
  .required:after {
21
22
  content: ' *';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codevdesign",
3
- "version": "0.0.86",
3
+ "version": "0.0.88",
4
4
  "description": "Composants Vuetify 3 pour les projets Codev",
5
5
  "files": [
6
6
  "./**/*.vue",