securityos/components/system/StartMenu/StyledStartMenuBackground.ts

17 lines
380 B
TypeScript
Raw Normal View History

2024-09-06 15:32:35 +00:00
import styled from "styled-components";
type StyledStartMenuBackgroundProps = {
$height?: string;
};
const StyledStartMenuBackground = styled.span<StyledStartMenuBackgroundProps>`
backdrop-filter: blur(10px);
height: ${({ $height }) => $height};
inset: 0;
position: absolute;
width: 100%;
z-index: -1;
`;
export default StyledStartMenuBackground;