Feature | workspace selector (#14)

feat: workspace selector (resolves #13)
This commit is contained in:
anusreesubash
2022-10-05 20:37:13 +05:30
committed by GitHub
parent 3bf18a1127
commit a17b6bef7a
6 changed files with 160 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
import styled from 'styled-components';
const Wrapper = styled.div`
.current-workspace {
margin-inline: .5rem;
background: #fff;
border-radius: 5px;
.caret {
margin-left: 0.25rem;
color: rgb(140, 140, 140);
fill: rgb(140, 140, 140);
}
}
`;
export default Wrapper;