Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions assets/css/v2/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,7 @@ nav {
--side-gutter-width
);
column-gap: var(--component-gap);
align-items: start;
}
}

Expand Down Expand Up @@ -863,6 +864,11 @@ blockquote p:last-child {
margin: 0 auto;
}

blockquote.side-callout {
grid-column: 2 !important;
grid-row: span 2;
}

/* Tabs */
.nav-tabs {
list-style: none;
Expand Down
2 changes: 1 addition & 1 deletion layouts/shortcodes/call-out.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- Blockquote element with a class that is the first parameter passed to the shortcode -->
<blockquote class="{{ .Get 0 }}">
<blockquote class="{{ .Get 0 }} side-callout">
<div>
<!-- Check if the third parameter (icon class) is provided -->
{{ with .Get 2 }}
Expand Down
Loading