-
-
Notifications
You must be signed in to change notification settings - Fork 715
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
completed session timeout for Admin: component to change timeout and …
…session management hook
- Loading branch information
1 parent
a3c3555
commit ac48132
Showing
12 changed files
with
1,071 additions
and
202 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,96 @@ | ||
/* Card styles */ | ||
.update-timeout-card { | ||
width: 700px; | ||
background: #ffffff; | ||
border: none; | ||
border-radius: 16px; | ||
filter: drop-shadow(0px 4px 15.3px rgba(0, 0, 0, 0.08)); | ||
padding: 20px; | ||
} | ||
|
||
.update-timeout-card-header { | ||
background: none; | ||
padding: 16px; | ||
border-bottom: none; | ||
} | ||
|
||
.update-timeout-card-title { | ||
font-family: 'Lato', sans-serif; | ||
font-weight: 600; | ||
font-size: 24px; | ||
color: #000000; | ||
} | ||
|
||
.update-timeout-card-body { | ||
padding: 20px; | ||
} | ||
|
||
.update-timeout-current { | ||
font-family: 'Lato', sans-serif; | ||
font-weight: 400; | ||
font-size: 16px; | ||
color: #000000; | ||
margin-bottom: 20px; /* Increased margin to create more space */ | ||
} | ||
|
||
.update-timeout-label { | ||
font-family: 'Lato', sans-serif; | ||
font-weight: 400; | ||
font-size: 16px; | ||
color: #000000; | ||
margin-bottom: 10px; /* Keep the same margin to maintain spacing with the slider */ | ||
} | ||
|
||
.update-timeout-labels-container { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: start; | ||
} | ||
|
||
.update-timeout-value { | ||
color: #14ae5c; | ||
font-weight: bold; | ||
} | ||
|
||
.update-timeout-slider-labels { | ||
display: flex; | ||
justify-content: space-between; | ||
font-size: 0.9rem; | ||
color: #757575; | ||
} | ||
|
||
.update-timeout-button-container { | ||
display: flex; | ||
justify-content: right; | ||
margin-top: 20px; | ||
} | ||
|
||
.update-timeout-button { | ||
width: 112px; | ||
height: 36px; | ||
background: #31bb6b; | ||
border-radius: 6px; | ||
font-family: 'Lato', sans-serif; | ||
font-weight: 500; | ||
font-size: 16px; | ||
color: #ffffff; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
border: none; | ||
box-shadow: none; | ||
} | ||
|
||
.update-timeout-button:hover { | ||
background-color: #28a745; | ||
border-color: #28a745; | ||
box-shadow: none; | ||
} | ||
|
||
.update-timeout-button:active { | ||
transform: scale(0.98); | ||
} | ||
|
||
.update-timeout-slider-container { | ||
position: relative; | ||
} |
Oops, something went wrong.