mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2025-12-06 00:20:05 +01:00
17 lines
376 B
TypeScript
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;
|