tangled
alpha
login
or
join now
besaid.zone
/
core
forked from
tangled.org/core
0
fork
atom
Monorepo for Tangled
0
fork
atom
overview
issues
pulls
pipelines
core/input: remove underline specifically for logout link
besaid.zone
3 months ago
c7941bc5
cbdd2cb0
verified
This commit was signed with the committer's
known signature
.
besaid.zone
SSH Key Fingerprint:
SHA256:Q4dc5PTI8DNTxJbH2bWsDeY6BXzfq0ce1XSA4H5Y3iI=
+5
-1
2 changed files
expand all
collapse all
unified
split
appview
pages
templates
layouts
fragments
topbar.html
input.css
+1
-1
appview/pages/templates/layouts/fragments/topbar.html
···
95
95
<a href="#"
96
96
hx-post="/logout"
97
97
hx-swap="none"
98
98
-
class="text-red-600 flex gap-2 items-center hover:bg-red-50 hover:text-red-700 px-2 py-2 rounded-sm no-underline">
98
98
+
class="text-red-600 flex gap-2 items-center hover:bg-red-50 hover:text-red-700 px-2 py-2 rounded-sm">
99
99
{{ i "arrow-right-from-line" "w-4 h-4" }}
100
100
<span>logout</span>
101
101
</a>
+4
input.css
···
93
93
@apply flex gap-2 items-center px-2 pb-2 pt-1.5 rounded-sm hover:bg-green-50 hover:text-green-700 no-underline
94
94
}
95
95
96
96
+
a[hx-post="/logout"] {
97
97
+
@apply no-underline;
98
98
+
}
99
99
+
96
100
label {
97
101
@apply block text-gray-900 text-sm font-bold py-2 uppercase dark:text-gray-100;
98
102
}