mirror of
https://github.com/usebruno/bruno.git
synced 2024-12-12 09:40:50 +01:00
12 lines
359 B
JavaScript
12 lines
359 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const Wrapper = styled.div`
|
|
.method-get { color: var(--color-method-get);}
|
|
.method-post { color: var(--color-method-post);}
|
|
.method-put { color: var(--color-method-put);}
|
|
.method-delete { color: var(--color-method-delete);}
|
|
.method-patch { color: var(--color-method-patch);}
|
|
`;
|
|
|
|
export default Wrapper;
|