feat: workspaces crud (resolves #15) (#19)

feat: workspaces crud (resolves #15)
This commit is contained in:
anusreesubash
2022-10-09 12:45:48 +05:30
committed by GitHub
parent f634839adb
commit b3a317dc4d
11 changed files with 285 additions and 27 deletions

View File

@@ -0,0 +1,15 @@
import styled from 'styled-components';
const Wrapper = styled.div`
button.submit {
color: white;
background-color: var(--color-background-danger) !important;
border: inherit !important;
&:hover {
border: inherit !important;
}
}
`;
export default Wrapper;