Add project creation page

This commit is contained in:
Hazem Krimi
2021-06-15 02:04:13 +01:00
parent 6bfc5aead3
commit 20902903d3
3 changed files with 1170 additions and 0 deletions
File diff suppressed because it is too large Load Diff
+18
View File
@@ -0,0 +1,18 @@
import styled from 'styled-components';
type WrapperProps = {
color?: 'client' | 'productOwner' | 'developer' | 'admin';
};
export const Wrapper = styled.div<WrapperProps>`
.carousel-arrow {
background: none;
border: none;
align-self: center;
cursor: pointer;
svg {
stroke: ${({ theme, color }) => theme.colors[color || 'client'].main};
}
}
`;