New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compact versions #115
Comments
|
This is all possible with CSS. You can target specific types with the .admonition content * {
margin: 0;
}.admonition-shortcut {
display: inline-flex;
}
.admonition content * {
margin: 0;
}.admonition {
display: flex;
}
.admonition .admonition-title {
padding-right: 1rem;
}
.admonition .admonition-content-holder {
width: 100%;
}
.admonition .admonition-content-copy {
top: 0;
}.admonition {
display: inline-flex;
}
.admonition .admonition-title-content {
height: 100%;
width: 100%;
}
.admonition .admonition-title .admonition-title-markdown {
display: none;
}
.admonition .admonition-content * {
margin: 0;
} |
|
Thanks for the information, but I don't have much knowledge of CSS. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment




I like a lot admonition and I would like to use it more often, but sometimes it is very big.
Is it possible to have some more compact versions?
The text was updated successfully, but these errors were encountered: