@jvs-milkdown/crepe 1.2.37 → 1.2.39

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.
@@ -121,25 +121,25 @@
121
121
  counter-increment: crepe-ol-level-4;
122
122
  }
123
123
  .milkdown ol > .milkdown-list-item-block li .label-wrapper .label.ordered {
124
- font-size: inherit;
124
+ font-size: var(--list-item-font-size, inherit);
125
125
  visibility: hidden;
126
126
  }
127
127
  .milkdown ol > .milkdown-list-item-block li .label-wrapper .label.ordered::before {
128
128
  content: counter(crepe-ol-level, decimal) '.';
129
- font-size: inherit;
129
+ font-size: var(--list-item-font-size, inherit);
130
130
  visibility: visible;
131
131
  }
132
132
  .milkdown ol ol > .milkdown-list-item-block li .label-wrapper .label.ordered {
133
- font-size: inherit;
133
+ font-size: var(--list-item-font-size, inherit);
134
134
  visibility: hidden;
135
135
  }
136
136
  .milkdown ol ol > .milkdown-list-item-block li .label-wrapper .label.ordered::before {
137
137
  content: counter(crepe-ol-level-2, lower-latin) '.';
138
- font-size: inherit;
138
+ font-size: var(--list-item-font-size, inherit);
139
139
  visibility: visible;
140
140
  }
141
141
  .milkdown ol ol ol > .milkdown-list-item-block li .label-wrapper .label.ordered {
142
- font-size: inherit;
142
+ font-size: var(--list-item-font-size, inherit);
143
143
  visibility: hidden;
144
144
  }
145
145
  .milkdown ol
@@ -150,11 +150,11 @@
150
150
  .label-wrapper
151
151
  .label.ordered::before {
152
152
  content: counter(crepe-ol-level-3, lower-roman) '.';
153
- font-size: inherit;
153
+ font-size: var(--list-item-font-size, inherit);
154
154
  visibility: visible;
155
155
  }
156
156
  .milkdown ol ol ol ol > .milkdown-list-item-block li .label-wrapper .label.ordered {
157
- font-size: inherit;
157
+ font-size: var(--list-item-font-size, inherit);
158
158
  visibility: hidden;
159
159
  }
160
160
  .milkdown ol
@@ -166,6 +166,6 @@
166
166
  .label-wrapper
167
167
  .label.ordered::before {
168
168
  content: counter(crepe-ol-level-4, decimal) '.';
169
- font-size: inherit;
169
+ font-size: var(--list-item-font-size, inherit);
170
170
  visibility: visible;
171
171
  }
@@ -17,6 +17,7 @@
17
17
 
18
18
  .milkdown .milkdown-table-block .table-wrapper {
19
19
  overflow-x: auto;
20
+ padding: 0 2px;
20
21
  }
21
22
 
22
23
  .milkdown .milkdown-table-block th,