We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0b4fcc7 + faf1854 commit fed6cd7Copy full SHA for fed6cd7
apps/client/src/components/TextEditor.vue
@@ -127,8 +127,6 @@ defineProps<Props>();
127
128
ul,
129
ol {
130
- position: relative;
131
-
132
margin: 0;
133
}
134
@@ -169,19 +167,23 @@ defineProps<Props>();
169
167
170
168
171
172
- ul ul::before,
173
- ul ol::before,
174
- ol ol::before,
175
- ol ul::before {
+ li {
+ position: relative;
+ }
+ li::after {
176
position: absolute;
177
178
left: -9px;
179
- top: 0;
180
- bottom: 0;
+ top: 24px;
+ bottom: 4px;
181
182
content: '';
183
184
border-left: 1px solid rgba(255, 255, 255, 0.15);
+
+ overflow: hidden;
185
186
+ pointer-events: none;
187
188
189
// Inline code
0 commit comments