mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-23 15:19:38 +02:00
* Prepare entry search for nested categories * Subcategory implementation * Remove caching for test stability
12 lines
427 B
Text
12 lines
427 B
Text
<%# locals: (category:) %>
|
|
<% category ||= null_category %>
|
|
|
|
<div>
|
|
<span class="flex items-center gap-1 text-sm font-medium rounded-full px-1.5 py-1 border truncate"
|
|
style="
|
|
background-color: color-mix(in srgb, <%= category.color %> 5%, white);
|
|
border-color: color-mix(in srgb, <%= category.color %> 30%, white);
|
|
color: <%= category.color %>;">
|
|
<%= category.name %>
|
|
</span>
|
|
</div>
|