lexxy 0.7.2.beta → 0.7.3.beta

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.
Binary file
Binary file
@@ -76,6 +76,7 @@
76
76
 
77
77
  a {
78
78
  color: var(--lexxy-color-link);
79
+ text-decoration: underline;
79
80
  }
80
81
 
81
82
  img,
@@ -115,11 +116,24 @@
115
116
  }
116
117
  }
117
118
 
119
+ ol, ul {
120
+ margin-inline-start: calc(var(--lexxy-content-margin) * 1.5);
121
+ padding: 0;
122
+ }
123
+
124
+ ul {
125
+ list-style-type: disc;
126
+ }
127
+
128
+ ol {
129
+ list-style-type: decimal;
130
+ }
131
+
118
132
  li.lexxy-nested-listitem {
119
133
  list-style-type: none;
120
134
 
121
135
  ol, ul {
122
- margin: 0;
136
+ margin-block-end: 0;
123
137
  }
124
138
  }
125
139
 
@@ -218,6 +232,8 @@
218
232
  th,
219
233
  td {
220
234
  border: 1px solid var(--lexxy-color-ink-lighter);
235
+ min-width: 5ch;
236
+ max-width: 50ch;
221
237
  padding: 1ch;
222
238
  text-align: start;
223
239
  word-break: normal;
@@ -227,7 +243,7 @@
227
243
  }
228
244
 
229
245
  &.lexxy-content__table-cell--header {
230
- background-color: var(--lexxy-color-ink-lightest);
246
+ background-color: var(--lexxy-color-table-header-bg);
231
247
  font-weight: bold;
232
248
  }
233
249