Compare commits

...

1 Commits

Author SHA1 Message Date
c5a28bf7ef Add a new block shortcode 2022-09-10 12:32:10 -07:00
2 changed files with 14 additions and 0 deletions

View File

@@ -163,6 +163,10 @@ td {
padding: 0.5rem;
}
th {
padding: 0.5rem;
}
div.highlight tr {
display: table-row;
}
@@ -276,6 +280,13 @@ figure {
font-family: unset;
}
.block {
@include bordered-block;
margin: auto;
padding: 0.5rem;
width: fit-content;
}
.dialog {
.message {
max-width: 0.8*$container-width;

View File

@@ -0,0 +1,3 @@
<div class="block">
{{ .Inner }}
</div>