added new logout button and fixed pdf viewing

This commit is contained in:
2025-08-14 10:41:31 +02:00
parent f91a87054d
commit 33c0f1c76c
4 changed files with 291 additions and 129 deletions
@@ -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);
}
}