-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* angular 18 update complete * version change
- Loading branch information
Showing
118 changed files
with
5,051 additions
and
6,811 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
@import '../../../../scss/settings/color-variables.scss'; | ||
|
||
.auth-main { | ||
position: relative; | ||
|
||
.auth-wrapper { | ||
height: 100%; | ||
width: 100%; | ||
min-height: 100vh; | ||
|
||
.saprator { | ||
position: relative; | ||
display: flex; | ||
align-self: center; | ||
justify-content: center; | ||
|
||
&:after { | ||
content: ''; | ||
position: absolute; | ||
top: 50%; | ||
left: 0; | ||
width: 100%; | ||
height: 1px; | ||
background: var(--bs-border-color); | ||
z-index: 1; | ||
} | ||
|
||
span { | ||
font-size: 0.875rem; | ||
padding: 8px 24px; | ||
background: $white; | ||
z-index: 5; | ||
text-transform: capitalize; | ||
color: $gray-800; | ||
font-weight: 500; | ||
} | ||
} | ||
|
||
&.v3 { | ||
display: flex; | ||
align-items: center; | ||
|
||
.auth-form { | ||
flex-direction: column; | ||
background: url('../../../../assets/images/authentication/img-auth-bg.svg'); | ||
min-height: 100vh; | ||
padding: 24px; | ||
background-repeat: no-repeat; | ||
background-size: auto 82%; | ||
background-position: left bottom; | ||
position: relative; | ||
justify-content: space-between; | ||
> * { | ||
position: relative; | ||
z-index: 5; | ||
} | ||
&:after { | ||
content: ''; | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
background: rgba($white, 0.2); | ||
backdrop-filter: blur(16px); | ||
} | ||
} | ||
} | ||
.auth-form { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
flex-grow: 1; | ||
|
||
.card { | ||
width: 100%; | ||
max-width: 495px; | ||
box-shadow: none; | ||
} | ||
|
||
img + span { | ||
padding-left: 15px; | ||
} | ||
|
||
h5 { | ||
span { | ||
text-decoration: underline; | ||
} | ||
} | ||
} | ||
.auth-footer, | ||
.auth-header { | ||
width: 100%; | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-between; | ||
} | ||
} | ||
} | ||
|
||
form i { | ||
display: inline-flex; | ||
align-items: center; | ||
justify-content: center; | ||
margin: 0px -12px 0px 0px; | ||
cursor: pointer; | ||
padding: 12px; | ||
font-size: 18px; | ||
position: absolute; | ||
top: 203px; | ||
right: 45px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
@import '../../../../scss/settings/color-variables.scss'; | ||
|
||
.auth-main { | ||
position: relative; | ||
|
||
.auth-wrapper { | ||
height: 100%; | ||
width: 100%; | ||
min-height: 100vh; | ||
|
||
.saprator { | ||
position: relative; | ||
display: flex; | ||
align-self: center; | ||
justify-content: center; | ||
|
||
&:after { | ||
content: ''; | ||
position: absolute; | ||
top: 50%; | ||
left: 0; | ||
width: 100%; | ||
height: 1px; | ||
background: var(--bs-border-color); | ||
z-index: 1; | ||
} | ||
|
||
span { | ||
font-size: 0.875rem; | ||
padding: 8px 24px; | ||
background: $white; | ||
z-index: 5; | ||
text-transform: capitalize; | ||
color: $gray-800; | ||
font-weight: 500; | ||
} | ||
} | ||
|
||
&.v3 { | ||
display: flex; | ||
align-items: center; | ||
|
||
.auth-form { | ||
flex-direction: column; | ||
background: url('../../../../assets/images/authentication/img-auth-bg.svg'); | ||
min-height: 100vh; | ||
padding: 24px; | ||
background-repeat: no-repeat; | ||
background-size: auto 82%; | ||
background-position: left bottom; | ||
position: relative; | ||
justify-content: space-between; | ||
> * { | ||
position: relative; | ||
z-index: 5; | ||
} | ||
&:after { | ||
content: ''; | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
background: rgba($white, 0.2); | ||
backdrop-filter: blur(16px); | ||
} | ||
} | ||
} | ||
.auth-form { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
flex-grow: 1; | ||
|
||
.card { | ||
width: 100%; | ||
max-width: 495px; | ||
box-shadow: none; | ||
} | ||
|
||
img + span { | ||
padding-left: 15px; | ||
} | ||
|
||
h5 { | ||
span { | ||
text-decoration: underline; | ||
} | ||
} | ||
} | ||
.auth-footer, | ||
.auth-header { | ||
width: 100%; | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-between; | ||
} | ||
} | ||
} |
Oops, something went wrong.