Files
bruno/packages/bruno-app/src/components/RequestPane/Vars/StyledWrapper.js
Anoop M D f40e4d2d79 feat: theme + ux overhaul (#6520)
* 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>
2025-12-27 13:52:20 +05:30

10 lines
186 B
JavaScript

import styled from 'styled-components';
const StyledWrapper = styled.div`
div.title {
color: ${(props) => props.theme.colors.text.subtext0};
}
`;
export default StyledWrapper;