added new logout button and fixed pdf viewing
This commit is contained in:
@@ -208,4 +208,28 @@
|
||||
|
||||
.tt-fullscreen-nav-btn.right {
|
||||
right: 15px;
|
||||
}
|
||||
|
||||
/* Center the loader on the screen */
|
||||
.tt-fullscreen-loader {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
/* Apply the animation to the SVG inside the loader */
|
||||
.tt-fullscreen-loader svg {
|
||||
animation: svg-spinner 1.2s linear infinite;
|
||||
}
|
||||
|
||||
/* Define the keyframes for the spinning animation */
|
||||
@keyframes svg-spinner {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user