mirror of https://github.com/portainer/portainer
fix(texttip): fix texttip placement [EE-4990] (#8427)
Co-authored-by: testa113 <testa113>pull/7902/head
parent
36c6d3f21b
commit
7fd263e8cc
|
@ -16,8 +16,8 @@ export function TextTip({
|
||||||
children,
|
children,
|
||||||
}: PropsWithChildren<Props>) {
|
}: PropsWithChildren<Props>) {
|
||||||
return (
|
return (
|
||||||
<p className="small flex items-center gap-1">
|
<p className="small inline-flex items-center gap-1">
|
||||||
<Icon icon={icon} mode={getMode(color)} />
|
<Icon icon={icon} mode={getMode(color)} className="shrink-0" />
|
||||||
|
|
||||||
<span className="text-muted">{children}</span>
|
<span className="text-muted">{children}</span>
|
||||||
</p>
|
</p>
|
||||||
|
|
Loading…
Reference in New Issue