Compare commits
No commits in common. "5b9093a6e72cbb71a6fb7c8a1fee63fe389a6c29" and "a82f1380572c1c759341956496ebf2000905ead9" have entirely different histories.
5b9093a6e7
...
a82f138057
@ -32,7 +32,6 @@
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
||||||
gap: 25px;
|
gap: 25px;
|
||||||
word-break: break-word;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon {
|
.icon {
|
||||||
|
@ -196,17 +196,7 @@ export const LandingPage = () => {
|
|||||||
and verification.
|
and verification.
|
||||||
</Typography>
|
</Typography>
|
||||||
</Typography>
|
</Typography>
|
||||||
<Box
|
<Box display={'grid'} gap={'25px'} gridTemplateColumns="repeat(3, 1fr)">
|
||||||
display={'grid'}
|
|
||||||
gap={'25px'}
|
|
||||||
sx={{
|
|
||||||
gridTemplateColumns: {
|
|
||||||
xs: '1fr',
|
|
||||||
sm: 'repeat(2, 1fr)',
|
|
||||||
xl: 'repeat(3, 1fr)'
|
|
||||||
}
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
{cards.map((c, i) => (
|
{cards.map((c, i) => (
|
||||||
<CardComponent key={i} {...c} />
|
<CardComponent key={i} {...c} />
|
||||||
))}
|
))}
|
||||||
@ -223,14 +213,7 @@ export const LandingPage = () => {
|
|||||||
create, sign, and verify any document from any device with a browser.
|
create, sign, and verify any document from any device with a browser.
|
||||||
</Typography>
|
</Typography>
|
||||||
|
|
||||||
<Button
|
<Button variant="contained" onClick={onSignInClick}>
|
||||||
sx={{
|
|
||||||
fontSize: '22px',
|
|
||||||
padding: '16px 32px'
|
|
||||||
}}
|
|
||||||
variant="contained"
|
|
||||||
onClick={onSignInClick}
|
|
||||||
>
|
|
||||||
GET STARTED
|
GET STARTED
|
||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
|
@ -6,3 +6,31 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.landingPage {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
color: $text-color;
|
||||||
|
min-height: 80vh;
|
||||||
|
justify-content: center;
|
||||||
|
padding-top: 20px;
|
||||||
|
|
||||||
|
.loginBottomBar {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
padding: 10px;
|
||||||
|
background-color: rgba(255, 255, 255, 0.7);
|
||||||
|
border-top: 1px solid rgba(0, 0, 0, 0.096);
|
||||||
|
position: fixed;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
|
||||||
|
.loginBtn {
|
||||||
|
// margin-top: 20px;
|
||||||
|
min-width: 200px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -24,7 +24,6 @@ export const theme = extendTheme({
|
|||||||
MuiButton: {
|
MuiButton: {
|
||||||
styleOverrides: {
|
styleOverrides: {
|
||||||
root: {
|
root: {
|
||||||
transition: 'ease 0.4s',
|
|
||||||
padding: '10px 20px',
|
padding: '10px 20px',
|
||||||
fontSize: '14px',
|
fontSize: '14px',
|
||||||
fontWeight: 'bold',
|
fontWeight: 'bold',
|
||||||
|
Loading…
Reference in New Issue
Block a user