mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-07 22:18:33 +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>
11 lines
259 B
JavaScript
11 lines
259 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const Wrapper = styled.div`
|
|
font-size: ${(props) => props.theme.font.size.sm};
|
|
font-weight: 500;
|
|
color: ${(props) => props.theme.requestTabPanel.responseStatus};
|
|
text-align: center;
|
|
`;
|
|
|
|
export default Wrapper;
|