feat: add test latency & select tag functionality

This commit is contained in:
divocat
2025-10-06 20:58:55 +03:00
parent 6117b0ef9b
commit caf82b096f
8 changed files with 197 additions and 28 deletions

View File

@@ -122,13 +122,17 @@ export const GlobalStyles = `
}
.pdk_dashboard-page__outbound-grid__item {
cursor: pointer;
border: 2px var(--background-color-low) solid;
border-radius: 4px;
padding: 10px;
transition: border 0.2s ease;
}
.pdk_dashboard-page__outbound-grid__item:hover {
.pdk_dashboard-page__outbound-grid__item--selectable {
cursor: pointer;
}
.pdk_dashboard-page__outbound-grid__item--selectable:hover {
border-color: var(--primary-color-high);
}