fix(css): correct link display issues on GFG links

Added styles to fix width and text-overflow issues on links with the class `gfg-link`. This resolves display problems where links were not fitting properly within their containers. No additional impact on other elements.
This commit is contained in:
Kumi 2024-09-09 14:15:57 +02:00
parent d372227238
commit aaccc5439f
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -27,4 +27,9 @@ pre {
padding: 1em;
border-radius: 5px;
overflow-x: auto;
}
.gfg-link {
width: unset !important;
text-overflow: unset !important;
}