daedalOS/components/system/StartMenu/Sidebar/StyledSidebar.ts

12 lines
226 B
TypeScript

import styled from "styled-components";
const StyledSidebar = styled.nav`
display: flex;
flex-direction: column;
justify-content: space-between;
margin-right: 7px;
margin-top: 4px;
`;
export default StyledSidebar;