mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-08 22:45:25 +00:00
* feat: theme + ux overhaul * chore: moved @opencollection/types at root of monorepo * chore: fixed review comments * chore: addressed review comments * chore: fix playwright tests --------- Co-authored-by: Bijin A B <bijin@usebruno.com>
12 lines
207 B
JavaScript
12 lines
207 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
max-width: 800px;
|
|
|
|
div.title {
|
|
color: ${(props) => props.theme.colors.text.subtext0};
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper;
|