daedalOS/components/system/Taskbar/StyledBackground.ts
2024-04-07 13:45:10 -07:00

17 lines
376 B
TypeScript

import styled from "styled-components";
type StyledBackgroundProps = {
$height?: string;
};
const StyledBackground = styled.span<StyledBackgroundProps>`
backdrop-filter: ${({ theme }) => `blur(${theme.sizes.taskbar.panelBlur})`};
height: ${({ $height }) => $height};
inset: 0;
position: absolute;
width: 100%;
z-index: -1;
`;
export default StyledBackground;