mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-25 13:45:52 +00:00
10 lines
170 B
JavaScript
10 lines
170 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
max-height: 60vh;
|
|
overflow-y: auto;
|
|
padding: 0 0.2rem;
|
|
`;
|
|
|
|
export default StyledWrapper;
|