Fix login screen not showing on sign-out
Remove !important from #auth-screen CSS so the inline style set by exitApp() can override it and display the login form after logout.
This commit is contained in:
parent
747fc3322a
commit
3ef16f6c6a
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@
|
|||
<link rel="apple-touch-icon" sizes="192x192" href="/icons/icon-192.png">
|
||||
<link rel="apple-touch-icon" sizes="512x512" href="/icons/icon-512.png">
|
||||
<!-- Auth screen hidden by default — auth.js shows it only when no valid session exists -->
|
||||
<style>#auth-screen { display: none !important; }</style>
|
||||
<style>#auth-screen { display: none; }</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue