orcs-design-system 3.3.44 → 3.3.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -77,10 +77,9 @@ const getViewingState = teamId => {
|
|
|
77
77
|
name: teams[teamId].name,
|
|
78
78
|
avatar: teams[teamId].avatar,
|
|
79
79
|
shape: teams[teamId].shape,
|
|
80
|
-
badge: teams[teamId].type &&
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
}),
|
|
80
|
+
// badge: teams[teamId].type && (
|
|
81
|
+
// <Badge variant="success">{teams[teamId].type}</Badge>
|
|
82
|
+
// ),
|
|
84
83
|
subNav: [{
|
|
85
84
|
name: "Overview",
|
|
86
85
|
link: `/teams/${teamId}/overview`
|
|
@@ -12,11 +12,11 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
12
12
|
const SubNavList = styled.ul.withConfig({
|
|
13
13
|
displayName: "SideNavCurrentViewSection__SubNavList",
|
|
14
14
|
componentId: "sc-12clz4a-0"
|
|
15
|
-
})(["list-style:none;padding:0;margin:0;display:flex;flex-direction:column;width:100%;"]);
|
|
15
|
+
})(["list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:2px;width:100%;"]);
|
|
16
16
|
const StyledNavLink = styled(NavLink).withConfig({
|
|
17
17
|
displayName: "SideNavCurrentViewSection__StyledNavLink",
|
|
18
18
|
componentId: "sc-12clz4a-1"
|
|
19
|
-
})(["font-size:", ";cursor:pointer;padding:
|
|
19
|
+
})(["font-size:", ";cursor:pointer;padding:5px 7px;text-decoration:none;border-radius:", ";transition:", ";color:", ";text-decoration:none;&:hover,&:focus{outline:none;color:", ";}&.active{background-color:", ";color:", ";&:hover,&:focus{outline:none;color:", ";}}"], themeGet("fontSizes.1"), themeGet("radii.2"), themeGet("transition.transitionDefault"), themeGet("colors.greyDarkest"), themeGet("colors.primary"), themeGet("colors.primaryLightest"), themeGet("colors.greyDarkest"), themeGet("colors.greyDarkest"));
|
|
20
20
|
const UnstyledNavLink = styled(NavLink).withConfig({
|
|
21
21
|
displayName: "SideNavCurrentViewSection__UnstyledNavLink",
|
|
22
22
|
componentId: "sc-12clz4a-2"
|