mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-08 22:45:25 +00:00
* BRU-1128 bug fix OpenAPI import error message * Feat:BRU-2542 Choose environments to include and show UI * Feat:BRU-2542 Added virtualization for env lists * Feat:BRU-2542 Reverted IPCError modal changes * BRU-2542 removed wait mount from playwrite script * BRU-2542 Added select all checkbox * BRU-2542 Added portals for generate doc modal and fixed overlapping issue * BRU-2542 Comments addressed --------- Co-authored-by: bruno-sachin <bruno-sachin@brunos-MacBook-Air.local>
13 lines
265 B
JavaScript
13 lines
265 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
color: ${(props) => props.theme.colors.danger};
|
|
pre {
|
|
color: ${(props) => props.theme.colors.danger};
|
|
max-height: 60vh;
|
|
overflow: auto;
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper;
|