desy-html 7.1.1 → 7.1.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.
@@ -167,6 +167,18 @@
167
167
  <p class="text-neutral-dark text-sm">Lista. <br><code>.c-ul</code></p>
168
168
  </div>
169
169
  </div>
170
+ <div class="flex mb-8">
171
+ <div class="w-1/2 mr-8">
172
+ <ul class="c-ul c-ul--no-bullets">
173
+ <li>Nam dapibus nisl vitae elit fringilla rutrum. Aenean sollicitudin, erat a elementum rutrum, neque sem pretium metus, quis mollis nisl nunc et massa. </li>
174
+ <li>Nam dapibus nisl vitae elit fringilla rutrum. Aenean sollicitudin, erat a elementum rutrum, neque sem pretium metus, quis mollis nisl nunc et massa. </li>
175
+ <li>Nam dapibus nisl vitae elit fringilla rutrum. Aenean sollicitudin, erat a elementum rutrum, neque sem pretium metus, quis mollis nisl nunc et massa. </li>
176
+ </ul>
177
+ </div>
178
+ <div>
179
+ <p class="text-neutral-dark text-sm">Lista sin bolas. <br><code>.c-ul.c-ul--no-bullets</code></p>
180
+ </div>
181
+ </div>
170
182
  <div class="flex mb-8">
171
183
  <div class="w-1/2 mr-8">
172
184
  <ul class="c-ol">
package/docs/index.html CHANGED
@@ -38,6 +38,10 @@
38
38
 
39
39
  <h2>Changelog (English)</h2>
40
40
  <p>What's new in the latest version of desy-html</p>
41
+ <h3>v.7.1.2</h3>
42
+ <ul class="text-sm">
43
+ <li>Minor improvements.</li>
44
+ </ul>
41
45
  <h3>v.7.1.1</h3>
42
46
  <ul class="text-sm">
43
47
  <li>Fixed a bug in checkboxes and radios. Now the conditionals work properly.</li>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "desy-html",
3
- "version": "7.1.1",
3
+ "version": "7.1.2",
4
4
  "description": "desy-html contains the code you need to start building a user interface for Gobierno de Aragón government webapps.",
5
5
  "author": {
6
6
  "name": "Desy (SDA Servicios Digitales de Aragón)",
@@ -90,6 +90,7 @@
90
90
 
91
91
  .c-ul {
92
92
  @apply mb-base;
93
+ @apply list-none;
93
94
 
94
95
  li {
95
96
  @apply relative;
@@ -113,6 +114,16 @@
113
114
  }
114
115
  }
115
116
 
117
+ .c-ul--no-bullets {
118
+ li {
119
+ @apply pl-0;
120
+
121
+ &::before {
122
+ @apply hidden;
123
+ }
124
+ }
125
+ }
126
+
116
127
  .c-ol {
117
128
  @apply mb-base;
118
129
  counter-reset: list-counter;