add arrow in top right corner for cards
Some checks are pending
ci/woodpecker/push/publish Pipeline is pending

This commit is contained in:
Mylloon 2023-10-16 11:12:22 +02:00
parent aa26ba8ae9
commit 2b9f64d6e5
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -68,6 +68,17 @@ div h3 {
margin-block: 0; margin-block: 0;
} }
div h3::after {
content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='20' width='20' viewBox='0 0 24 24' fill='none' %3E%3Cpath d='M21 3h-6m6 0l-9 9m9-9v6' stroke='currentColor' %3E%3C/path%3E%3Cpath d='M21 13v6a2 2 0 01-2 2H5a2 2 0 01-2-2V5a2 2 0 012-2h6' stroke='currentColor' %3E%3C/path%3E%3C/svg%3E");
float: right;
}
@media (prefers-color-scheme: dark) {
div h3::after {
filter: invert(80%);
}
}
/* Element description */ /* Element description */
span { span {
margin: auto; margin: auto;