mirror of
https://github.com/hazemKrimi/crimson-quirks-ui.git
synced 2026-05-01 18:20:28 +00:00
Fix box component styles
This commit is contained in:
@@ -2,7 +2,7 @@ import styled from 'styled-components';
|
|||||||
import { BoxProps } from '.';
|
import { BoxProps } from '.';
|
||||||
|
|
||||||
export const Wrapper = styled.div<BoxProps>`
|
export const Wrapper = styled.div<BoxProps>`
|
||||||
${({ cursor }) => cursor && `cursor: ${cursor}`}
|
${({ cursor }) => cursor && `cursor: ${cursor}`};
|
||||||
|
|
||||||
${({ position }) => position && `position: ${position}`};
|
${({ position }) => position && `position: ${position}`};
|
||||||
${({ zIndex }) => zIndex && `z-index: ${zIndex}`};
|
${({ zIndex }) => zIndex && `z-index: ${zIndex}`};
|
||||||
|
|||||||
Reference in New Issue
Block a user