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.
$presentation-title-slide-text-align
1 parent 6f50227 commit 363494cCopy full SHA for 363494c
src/resources/formats/revealjs/pandoc/title-fancy/title-slide.scss
@@ -1,14 +1,24 @@
1
/*-- scss:rules --*/
2
+$presentation-author-block-padding-left: if(
3
+ $presentation-title-slide-text-align != left,
4
+ 0.5em,
5
+ 0
6
+);
7
+$presentation-author-block-padding-right: if(
8
+ $presentation-title-slide-text-align != right,
9
10
11
12
13
.reveal {
14
.quarto-title-block {
15
.quarto-title-authors {
16
display: flex;
- justify-content: center;
17
+ justify-content: $presentation-title-slide-text-align;
18
19
.quarto-title-author {
- padding-left: 0.5em;
- padding-right: 0.5em;
20
+ padding-left: $presentation-author-block-padding-left;
21
+ padding-right: $presentation-author-block-padding-right;
22
23
a,
24
a:hover,
0 commit comments