11 lines
171 B
TypeScript
11 lines
171 B
TypeScript
|
import styled from 'styled-components';
|
||
|
|
||
|
const FloatingWindowContent = styled.div`
|
||
|
position: absolute;
|
||
|
z-index: 1002;
|
||
|
`;
|
||
|
|
||
|
export default {
|
||
|
FloatingWindowContent,
|
||
|
};
|