chore(argos): remove mermaid diagram from screenshot

on PR check, argos ci is failing almost all the time
it's about the mermaid diagram that has different rendering

the diagram was already excluded in the css but it looks like
that it was not excluded in fact, adding new entry in the css

fixes https://github.com/podman-desktop/podman-desktop/issues/15875
Signed-off-by: Florent Benoit <fbenoit@redhat.com>
This commit is contained in:
Florent Benoit 2026-02-11 11:47:15 +01:00 committed by Florent BENOIT
parent e9700b40c9
commit 64935c23cd

View file

@ -14,7 +14,9 @@ iframe,
/* Different docs last-update dates can alter layout */
.theme-last-updated,
/* Mermaid diagrams are rendered client-side and produce layout shifts */
.docusaurus-mermaid-container {
.docusaurus-mermaid-container,
/* Mermaid.ink external images can change between renders */
img[src*='mermaid.ink'] {
display: none;
}