Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update DS #1374

Merged
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion www/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"@nivo/geo": "0.83.0",
"@nivo/line": "0.83.0",
"@octokit/core": "4.2.1",
"@pluralsh/design-system": "3.69.2",
"@pluralsh/design-system": "3.74.2",
"@react-spring/web": "9.7.3",
"@stripe/react-stripe-js": "2.1.0",
"@stripe/stripe-js": "1.54.0",
Expand Down
2 changes: 1 addition & 1 deletion www/src/_deprecated/components/incidents/Severity.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function dot(color, theme) {
alignItems: 'center',
display: 'flex',

':before': {
'&:before': {
backgroundColor: clr,
borderRadius: 10,
content: '" "',
Expand Down
7 changes: 1 addition & 6 deletions www/src/components/account/Account.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@ import { Outlet, useParams } from 'react-router-dom'
import { Flex } from 'honorable'

import { ResponsiveLayoutContentContainer } from '../utils/layout/ResponsiveLayoutContentContainer'
import { ResponsiveLayoutSidecarContainer } from '../utils/layout/ResponsiveLayoutSidecarContainer'
import { ResponsiveLayoutSpacer } from '../utils/layout/ResponsiveLayoutSpacer'
import { ResponsiveLayoutSidenavContainer } from '../utils/layout/ResponsiveLayoutSidenavContainer'
import { ResponsiveLayoutPage } from '../utils/layout/ResponsiveLayoutPage'
import { ResponsiveLayoutSidenavContainer } from '../utils/layout/ResponsiveLayoutSidenavContainer'

import AccountSideNav from './AccountSidenav'

Expand Down Expand Up @@ -67,15 +65,12 @@ export function Account() {
overflowY="auto"
padding="large"
>
<ResponsiveLayoutSpacer />
<TabPanel
as={<ResponsiveLayoutContentContainer overflow="visible" />}
stateRef={tabStateRef}
>
<Outlet />
</TabPanel>
<ResponsiveLayoutSpacer />
<ResponsiveLayoutSidecarContainer />
</Flex>
</ResponsiveLayoutPage>
)
Expand Down
1 change: 1 addition & 0 deletions www/src/components/account/AccountSidenav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ function AccountTabList({ tabStateRef }: any) {
>
{DIRECTORY.map(({ label, path }) => (
<LinkTabWrap
vertical
key={path}
textValue={label}
to={path}
Expand Down
2 changes: 1 addition & 1 deletion www/src/components/account/billing/BillingPricingTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Div } from 'honorable'
const columnStyles = {
position: 'relative',
boxShadow: '-12px 0 12px 0px rgb(14 16 21 / 20%)',
':first-child': {
'&:first-child': {
boxShadow: 'none',
'> div': {
display: 'flex',
Expand Down
1 change: 1 addition & 0 deletions www/src/components/audits/AuditDirectory.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ export function AuditDirectory() {
>
{DIRECTORY.map(({ label, path }) => (
<LinkTabWrap
vertical
key={path}
textValue={label}
to={path}
Expand Down
5 changes: 4 additions & 1 deletion www/src/components/create-cluster/CreateCluster.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,9 @@ const MainWrapperSC = styled.div(({ theme }) => ({
justifyContent: 'space-between',
gap: theme.spacing.xlarge,
padding: theme.spacing.large,
'::after': {
height: '100%',
overflow: 'auto',
'&::after': {
// makes the spacing look a little nicer
content: '""',
flex: 0.35,
Expand All @@ -197,6 +199,7 @@ const MainWrapperSC = styled.div(({ theme }) => ({
const SidebarWrapperSC = styled.div(({ theme }) => ({
display: 'flex',
width: 300,
height: 'min-content',
flexDirection: 'column',
gap: theme.spacing.xlarge,
}))
Expand Down
4 changes: 0 additions & 4 deletions www/src/components/marketplace/MarketplaceRepositories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -207,13 +207,9 @@ function MarketplaceRepositories({ publisher }: { publisher?: any }) {
padding={0}
overflow="auto"
>
{!publisher && <ResponsiveLayoutSpacer />}
<Flex
direction="column"
overflow="hidden"
maxWidth-desktopLarge-up={publisher ? null : 1640}
width-desktopLarge-up={publisher ? null : 1640}
width-desktopLarge-down="100%"
flexGrow={publisher ? 1 : 0}
>
<Flex
Expand Down
226 changes: 0 additions & 226 deletions www/src/components/shell/onboarding/sections/cloud/CloudStep.tsx

This file was deleted.

Loading
Loading