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 ed12068 commit ef072eeCopy full SHA for ef072ee
assets/css/v2/style.css
@@ -328,6 +328,7 @@ nav {
328
--side-gutter-width
329
);
330
column-gap: var(--component-gap);
331
+ align-items: start;
332
}
333
334
@@ -863,6 +864,11 @@ blockquote p:last-child {
863
864
margin: 0 auto;
865
866
867
+blockquote.side-callout {
868
+ grid-column: 2 !important;
869
+ grid-row: span 2;
870
+}
871
+
872
/* Tabs */
873
.nav-tabs {
874
list-style: none;
layouts/shortcodes/call-out.html
@@ -1,5 +1,5 @@
1
<!-- Blockquote element with a class that is the first parameter passed to the shortcode -->
2
-<blockquote class="{{ .Get 0 }}">
+<blockquote class="{{ .Get 0 }} side-callout">
3
<div>
4
<!-- Check if the third parameter (icon class) is provided -->
5
{{ with .Get 2 }}
0 commit comments