fix flickering issue with instance-card refresh and instance search

This commit is contained in:
2025-10-10 21:41:10 +00:00
parent 06afdcec37
commit 3d5989a946

View File

@@ -22,6 +22,18 @@
width: auto; width: auto;
white-space: nowrap; white-space: nowrap;
} }
.flex { /* needed for some reason to avoid a flickering issue on chrome ONLY */
display: flex;
}
.row { /* needed for some reason to avoid a flickering issue on chrome ONLY */
flex-direction: row;
column-gap: 10px;
align-items: center;
}
.wrap { /* needed for some reason to avoid a flickering issue on chrome ONLY */
flex-wrap: wrap;
row-gap: 10px;
}
</style> </style>
<p>{{.VMID}}</p> <p>{{.VMID}}</p>
<p id="instance-name">{{.Name}}</p> <p id="instance-name">{{.Name}}</p>