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.
1 parent 508505a commit 9d7d368Copy full SHA for 9d7d368
1 file changed
app/components/Readme.vue
@@ -409,6 +409,19 @@ function handleClick(event: MouseEvent) {
409
display: revert-layer;
410
}
411
412
+/* Override HTML align attribute float behavior on images and containers.
413
+ Matches npm registry behavior: display as block instead of floating. */
414
+.readme :deep(img[align='right']),
415
+.readme :deep(img[align='left']) {
416
+ float: none;
417
+}
418
+
419
+.readme :deep(div[align='right']),
420
+.readme :deep(div[align='left']) {
421
422
+ text-align: start;
423
424
425
.readme :deep(hr) {
426
border: none;
427
border-top: 1px solid var(--border);
0 commit comments