Skip to content

install dependecies test #35

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
9 changes: 7 additions & 2 deletions src/examples/Lists/ProfilesList/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,14 @@ function ProfilesList({ title, profiles }) {
</SoftBox>
<SoftBox ml="auto">
{action.type === "internal" ? (
<SoftButton component={Link} to={action.route} variant="text" color="info">
<SoftBox
component={Link}
to={action.route}
variant="contained"
color="info"
>
{action.label}
</SoftButton>
</SoftBox>
) : (
<SoftButton
component="a"
Expand Down
16 changes: 8 additions & 8 deletions src/examples/Navbars/DefaultNavbar/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function DefaultNavbar({ transparent, light, action }) {
}, []);

return (
<Container>
(<Container>
<SoftBox
py={1.5}
px={{ xs: transparent ? 4 : 5, sm: transparent ? 2 : 5, lg: transparent ? 0 : 5 }}
Expand Down Expand Up @@ -115,16 +115,16 @@ function DefaultNavbar({ transparent, light, action }) {
{action &&
(action.type === "internal" ? (
<SoftBox display={{ xs: "none", lg: "inline-block" }}>
<SoftButton
<SoftBox
component={Link}
to={action.route}
variant="gradient"
color={action.color ? action.color : "info"}
size="small"
circular
>
color={action.color ? action.color : 'dark'}
borderRadius="none"
shadow="none"
>
{action.label}
</SoftButton>
</SoftBox>
</SoftBox>
) : (
<SoftBox display={{ xs: "none", lg: "inline-block" }}>
Expand Down Expand Up @@ -155,7 +155,7 @@ function DefaultNavbar({ transparent, light, action }) {
</SoftBox>
</SoftBox>
{mobileView && <DefaultNavbarMobile open={mobileNavbar} close={closeMobileNavbar} />}
</Container>
</Container>)
);
}

Expand Down
8 changes: 4 additions & 4 deletions src/layouts/authentication/sign-in/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function SignIn() {
const handleSetRememberMe = () => setRememberMe(!rememberMe);

return (
<CoverLayout
(<CoverLayout
title="Welcome back"
description="Enter your email and password to sign in"
image={curved9}
Expand Down Expand Up @@ -73,9 +73,9 @@ function SignIn() {
</SoftTypography>
</SoftBox>
<SoftBox mt={4} mb={1}>
<SoftButton variant="gradient" color="info" fullWidth>
<SoftBox variant="gradient" color="info" fullWidth="true" >
sign in
</SoftButton>
</SoftBox>
</SoftBox>
<SoftBox mt={3} textAlign="center">
<SoftTypography variant="button" color="text" fontWeight="regular">
Expand All @@ -93,7 +93,7 @@ function SignIn() {
</SoftTypography>
</SoftBox>
</SoftBox>
</CoverLayout>
</CoverLayout>)
);
}

Expand Down
8 changes: 4 additions & 4 deletions src/layouts/authentication/sign-up/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function SignUp() {
const handleSetAgremment = () => setAgremment(!agreement);

return (
<BasicLayout
(<BasicLayout
title="Welcome!"
description="Use these awesome forms to login or create new account in your project for free."
image={curved6}
Expand Down Expand Up @@ -89,9 +89,9 @@ function SignUp() {
</SoftTypography>
</SoftBox>
<SoftBox mt={4} mb={1}>
<SoftButton variant="gradient" color="dark" fullWidth>
<SoftBox variant="gradient" color="dark" >
sign up
</SoftButton>
</SoftBox>
</SoftBox>
<SoftBox mt={3} textAlign="center">
<SoftTypography variant="button" color="text" fontWeight="regular">
Expand All @@ -111,7 +111,7 @@ function SignUp() {
</SoftBox>
</SoftBox>
</Card>
</BasicLayout>
</BasicLayout>)
);
}

Expand Down
32 changes: 16 additions & 16 deletions src/layouts/billing/components/Bill/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@ import SoftButton from "components/SoftButton";

function Bill({ name, company, email, vat, noGutter }) {
return (
<SoftBox
component="li"
display="flex"
justifyContent="space-between"
alignItems="flex-start"
bgColor="grey-100"
borderRadius="lg"
p={3}
mb={noGutter ? 0 : 1}
mt={2}
>
(<SoftBox
component="li"
display="flex"
justifyContent="space-between"
alignItems="flex-start"
bgColor="grey-100"
borderRadius="lg"
p={3}
mb={noGutter ? 0 : 1}
mt={2}
>
<SoftBox width="100%" display="flex" flexDirection="column">
<SoftBox
display="flex"
Expand All @@ -56,13 +56,13 @@ function Bill({ name, company, email, vat, noGutter }) {
ml={{ xs: -1.5, sm: 0 }}
>
<SoftBox mr={1}>
<SoftButton variant="text" color="error">
<SoftBox variant="contained" color="error" >
<Icon>delete</Icon>&nbsp;delete
</SoftButton>
</SoftBox>
</SoftBox>
<SoftButton variant="text" color="dark">
<SoftBox variant="contained" color="dark" >
<Icon>edit</Icon>&nbsp;edit
</SoftButton>
</SoftBox>
</SoftBox>
</SoftBox>
<SoftBox mb={1} lineHeight={0}>
Expand All @@ -88,7 +88,7 @@ function Bill({ name, company, email, vat, noGutter }) {
</SoftTypography>
</SoftTypography>
</SoftBox>
</SoftBox>
</SoftBox>)
);
}

Expand Down
8 changes: 4 additions & 4 deletions src/layouts/billing/components/PaymentMethod/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ function PaymentMethod() {
const { borderWidth, borderColor } = borders;

return (
<Card id="delete-account">
(<Card id="delete-account">
<SoftBox pt={2} px={2} display="flex" justifyContent="space-between" alignItems="center">
<SoftTypography variant="h6" fontWeight="medium">
Payment Method
</SoftTypography>
<SoftButton variant="gradient" color="dark">
<SoftBox variant="gradient" color="dark" >
<Icon sx={{ fontWeight: "bold" }}>add</Icon>
&nbsp;add new card
</SoftButton>
</SoftBox>
</SoftBox>
<SoftBox p={2}>
<Grid container spacing={3}>
Expand Down Expand Up @@ -93,7 +93,7 @@ function PaymentMethod() {
</Grid>
</Grid>
</SoftBox>
</Card>
</Card>)
);
}

Expand Down