15 lines
356 B
TypeScript
15 lines
356 B
TypeScript
|
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;
|