securityos/components/system/Taskbar/TaskbarEntries/StyledTaskbarEntries.ts

15 lines
356 B
TypeScript
Raw Normal View History

2024-09-06 15:32:35 +00:00
import styled from "styled-components";
const StyledTaskbarEntries = styled.ol`
column-gap: 1px;
display: flex;
height: 100%;
left: ${({ theme }) => theme.sizes.startButton.width};
margin: 0 3px;
overflow: hidden;
position: absolute;
right: ${({ theme }) => theme.sizes.clock.width};
`;
export default StyledTaskbarEntries;