mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-25 21:55:49 +00:00
20 lines
378 B
JavaScript
20 lines
378 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const Wrapper = styled.div`
|
|
position: absolute;
|
|
min-width: fit-content;
|
|
font-size: 14px;
|
|
top: 36px;
|
|
right: 0;
|
|
white-space: nowrap;
|
|
z-index: 1000;
|
|
background-color: ${(props) => props.theme.variables.bg};
|
|
|
|
.popover {
|
|
border-radius: 2px;
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
|
|
}
|
|
`;
|
|
|
|
export default Wrapper;
|