ubicloud/views/components/revealable_content.erb
Jeremy Evans 311699eac2 Use herb linter for linting erb files, and fix most issues
After running these changes, there are 1 error and 3 warnings when
running the linter, due to bugs in the linter
(https://github.com/marcoroth/herb/issues 480, 481, 483).
2025-09-05 14:51:03 -07:00

31 lines
786 B
Text

<%# locals: (content:) %>
<div class="revealable-content group flex-grow">
<div
class="
shadow-content justify-between items-center gap-2 flex
group-[.active]:hidden
"
>
●●●●●●
<img
alt=""
src="/icons/hero-eye.svg"
width="18px"
class="revealable-button inline-block cursor-pointer ms1"
>
</div>
<div class="revealed-content hidden group-[.active]:block break-all">
<div class="flex gap-2 items-center justify-between">
<div class="revealed-content-text whitespace-pre-line">
<%= content %>
</div>
<img
alt=""
src="/icons/hero-eye-slash.svg"
width="18px"
class="revealable-button inline-block cursor-pointer ms1"
>
</div>
</div>
</div>