Update styling trace tabs (#8807)

This commit is contained in:
Bram Kragten 2021-04-04 08:19:06 +02:00 committed by GitHub
parent 890639436b
commit dffe0f656d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,9 +22,17 @@ export const traceTabStyles = css`
border-bottom: 2px solid transparent;
user-select: none;
background: none;
color: var(--primary-text-color);
outline: none;
transition: background 15ms linear;
}
.tabs > *.active {
border-bottom-color: var(--accent-color);
}
.tabs > *:focus,
.tabs > *:hover {
background: var(--secondary-background-color);
}
`;