mirror of
https://github.com/we-promise/sure.git
synced 2026-04-08 14:54:49 +00:00
* Implement inline category selection * Add turbo frame to refresh updated transaction * Improve styles * Fix category assignment * Reorganize code * Revert event propagation * Remove unused frames * Make only the transaction name clickable * Add custom scrollbar class
5 lines
392 B
Plaintext
5 lines
392 B
Plaintext
<%# locals: (name: "Uncategorized", color: "#737373") %>
|
|
<% background_color = "color-mix(in srgb, #{color} 5%, white)" %>
|
|
<% border_color = "color-mix(in srgb, #{color} 10%, white)" %>
|
|
<span class="border text-sm font-medium px-2.5 py-1 rounded-full cursor-pointer" style="background-color: <%= background_color %>; border-color: <%= border_color %>; color: <%= color %>"><%= name %></span>
|