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