mirror of
https://github.com/usebruno/bruno.git
synced 2024-12-12 09:40:50 +01:00
22 lines
499 B
JavaScript
22 lines
499 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const Wrapper = styled.div`
|
|
font-size: 0.6875rem;
|
|
display: flex;
|
|
align-self: stretch;
|
|
align-items: center;
|
|
|
|
span {
|
|
position: relative;
|
|
top: 1px;
|
|
}
|
|
|
|
.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;
|