mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-09 06:55:03 +00:00
32 lines
602 B
JavaScript
32 lines
602 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const Wrapper = styled.div`
|
|
.item-path {
|
|
.link {
|
|
color: ${(props) => props.theme.textLink};
|
|
}
|
|
}
|
|
.danger {
|
|
color: ${(props) => props.theme.colors.text.danger};
|
|
}
|
|
|
|
.test-summary {
|
|
color: ${(props) => props.theme.tabs.active.border};
|
|
}
|
|
|
|
/* test results */
|
|
.test-success {
|
|
color: ${(props) => props.theme.colors.text.green};
|
|
}
|
|
|
|
.test-failure {
|
|
color: ${(props) => props.theme.colors.text.danger};
|
|
|
|
.error-message {
|
|
color: ${(props) => props.theme.colors.text.muted};
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default Wrapper;
|