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:
parent
d372227238
commit
aaccc5439f
1 changed files with 5 additions and 0 deletions
|
@ -27,4 +27,9 @@ pre {
|
|||
padding: 1em;
|
||||
border-radius: 5px;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.gfg-link {
|
||||
width: unset !important;
|
||||
text-overflow: unset !important;
|
||||
}
|
Loading…
Reference in a new issue