Files
commerce/src/components/modules/404/404Page/404Page.module.scss
2021-09-14 16:36:59 +07:00

36 lines
901 B
SCSS

@import '../../../../styles/utilities';
.wrapper{
@apply flex justify-center;
text-align: center;
height:100%;
background-color: white;
.inner{
height: 70vh;
.logo{
margin-top: 2rem;
}
.text{
@apply flex justify-center flex-col;
align-items: center;
width: 100%;
height:80%;
margin-top: 2rem;
h1{
font-weight: bold;
font-size: 15rem;
color: var(--primary);
font-family: var(--font-heading);
text-shadow: 3px 5px 4px var(--primary);
height: 20%;
}
.description{
@apply topline;
margin-top:1rem;
margin-bottom: 3rem;
color:var(--text-label);
}
}
}
}