feat: workspace selector (resolves #13)

This commit is contained in:
Anusree Subash
2022-10-05 20:20:46 +05:30
parent bd153bf849
commit 72a9567221
6 changed files with 161 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;