mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-03 11:39:28 -05:00
14 lines
309 B
CSS
14 lines
309 B
CSS
a.external-link::after {
|
|
/* \00A0 is a non-breaking space
|
|
to make the mark be on the same line as the link
|
|
*/
|
|
content: "\00A0[↪]";
|
|
}
|
|
|
|
a.internal-link::after {
|
|
/* \00A0 is a non-breaking space
|
|
to make the mark be on the same line as the link
|
|
*/
|
|
content: "\00A0↪";
|
|
}
|