-
Thanks for creating this project, it is really interesting! I've used a significant number of different frameworks to create slides and I think that it is likely possible for me to convert to using slidev for all of my teaching and research presentations. I'm currently trying to theme different aspects of the example presentation. For instance, I can change the size of fonts through a CSS file in the .slidev-layout {
background: #E0E0E0;
code {
@apply text-3xl
background: #1c1c1c;
}
h1 {
@apply text-7xl
}
h2,h3 {
@apply text-2xl
}
p {
@apply text-2xl
}
li {
@apply text-xl
}
} The challenge that I am running into is that if a slide does not have a lot of content on it, then a white box appears at the bottom of the slide. After inspect the element in Firefox I can see that it is Ultimately, I would like it to match the color defined for the background in the Again, thanks for investing your time to create and maintain this framework. It looks really exciting and I hope to learn it well enough that I could use it for all of my teaching and research presentations. If someone can help in any way, I would greatly appreciate it! Thanks in advance for your time and wisdom. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hey Gregory, thanks for the kind words. Maybe you can try this: .slidev-layout {
height: 100%;
background: #E0E0E0;
} |
Beta Was this translation helpful? Give feedback.
Hey Gregory, thanks for the kind words.
Maybe you can try this: