We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fde216f + ec7e0b6 commit 91f7a15Copy full SHA for 91f7a15
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@channel.io/design-system",
3
- "version": "0.1.1",
+ "version": "0.1.2",
4
"description": "Design System by Channel",
5
"main": "build/index.js",
6
"module": "build/index.es.js",
src/layout/Navigation/Navigation.styled.ts
@@ -11,6 +11,7 @@ export const StyledNavigation = styled.div<NavigationProps>`
11
user-select: ${props => (props.isDragging ? 'none' : 'auto')};
12
width: ${props => props.width}px;
13
background-color: ${props => props.theme?.colors?.background1};
14
+ box-shadow: inset -1px 0 0 0 ${props => props.theme?.colors?.background2};
15
transition: background-color 200ms ease-in-out, width 200ms;
16
`
17
0 commit comments