You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/app/react/components/NavTabs/NavTabs.module.css

33 lines
607 B

.parent {
background: var(--blue-4);
border-radius: 4px 4px 0 0;
padding-top: 5px;
margin-top: -5px;
}
.parent a {
background-color: initial;
border: 1px solid transparent;
cursor: inherit;
}
.parent {
background-color: var(--blue-4);
}
:global(:root[theme='dark']) .parent {
background-color: var(--grey-40);
}
:global(:root[theme='highcontrast']) .parent {
background-color: var(--white-color);
}
.parent a {
color: var(--white-color);
}
:global([theme='dark']) .parent a {
color: var(--black-color);
}
:global([theme='highcontrast']) .parent a {
color: var(--black-color);
}