mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-01 08:34:07 +00:00
26 lines
479 B
JavaScript
26 lines
479 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
.partial {
|
|
color: ${(props) => props.theme.colors.text.yellow};
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.loading {
|
|
color: ${(props) => props.theme.colors.text.muted};
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.completed {
|
|
color: ${(props) => props.theme.colors.text.green};
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.failed {
|
|
color: ${(props) => props.theme.colors.text.danger};
|
|
opacity: 0.8;
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper;
|