Self-hosted, federated location sharing app and server that prioritizes user privacy and security
end-to-end-encryption location-sharing privacy self-hosted federated
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fixes the buttons not having button css.

Catrina 42a280cb c60813a9

+9 -5
+3 -3
app/src/settings-page/settings.css
··· 96 96 background: #1d4ed8; 97 97 } 98 98 99 - .btn-qr { 99 + .btn-secondary { 100 100 background: white; 101 101 gap: 0.5rem; 102 102 border: 1px solid #d1d5db; 103 103 } 104 104 105 - .btn-qr:hover { 105 + .btn-secondary:hover { 106 106 background: #f3f4f6; 107 107 } 108 108 109 - .btn-qr img { 109 + .btn-secondary img { 110 110 width: 16px; 111 111 height: 16px; 112 112 }
+6 -2
app/src/settings-page/settings.html
··· 11 11 <div class="actions" x-data="settingsPageState"> 12 12 <h3>Settings</h3> 13 13 14 - <button class="btn-secondary" @click="goto('home')">Back to Home</button> 14 + <button class="btn-primary" @click="goto('home')"> 15 + Back to Home 16 + </button> 15 17 16 - <button class="btn-secondary" @click="await debugLogout()">Signout</button> 18 + <button class="btn-secondary" @click="await debugLogout()"> 19 + Signout 20 + </button> 17 21 </div> 18 22 </div> 19 23 </body>