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
|
@ -28,3 +28,8 @@ pre {
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.gfg-link {
|
||||||
|
width: unset !important;
|
||||||
|
text-overflow: unset !important;
|
||||||
|
}
|
Loading…
Reference in a new issue