resolves #189 add support for align=left and align=right on block image
authorDan Allen <dan@opendevise.com>
Thu, 26 May 2022 07:18:29 +0000 (01:18 -0600)
committerDan Allen <dan@opendevise.com>
Thu, 26 May 2022 07:21:04 +0000 (01:21 -0600)
preview-src/index.adoc
src/css/doc.css

index dd76475..6fc4155 100644 (file)
@@ -291,7 +291,7 @@ image::multirepo-ssg.svg[Multirepo SSG,3000,opts=interactive]
 Make the switch today!
 
 .Full Circle with Jake Blauvelt
-video::300817511[vimeo,600,300]
+video::300817511[vimeo,640,360,align=left]
 
 [#english+中文]
 == English + 中文
index 4ca5aa8..3a18a29 100644 (file)
   align-items: center;
 }
 
+.doc .imageblock.text-left,
+.doc .videoblock.text-left {
+  align-items: flex-start;
+}
+
+.doc .imageblock.text-right,
+.doc .videoblock.text-right {
+  align-items: flex-end;
+}
+
 .doc .imageblock img,
 .doc .imageblock object,
 .doc .imageblock svg,