mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
695 B
SCSS
32 lines
695 B
SCSS
#LoginPatternBg {
|
|
background: linear-gradient(180deg, var(--login-bg-color-1) 0%, var(--login-bg-color-2) 100%);
|
|
//background-size: cover;
|
|
//background-position: center;
|
|
#login-container{
|
|
height: 90vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
background-position: center;
|
|
}
|
|
|
|
|
|
#login-form{
|
|
max-width: 90%;
|
|
width: 450px;
|
|
}
|
|
#login-content{
|
|
|
|
text-align: start;
|
|
padding: 1rem;
|
|
background: #ffffff99;
|
|
backdrop-filter: blur(4px);
|
|
border-radius: var(--xshop-border-radius);
|
|
}
|
|
|
|
.not-send{
|
|
display: none;
|
|
}
|
|
}
|