make admin tools admin toolier

This commit is contained in:
24c02
2025-02-22 15:30:41 -05:00
parent 7aa2068b1e
commit 51d649d95c
2 changed files with 2 additions and 2 deletions

View File

@@ -19,5 +19,5 @@
.admin-tool {
border-radius: 5px;
border: 1px solid var(--uchu-gray);
border: 1px solid var(--uchu-orange);
}

View File

@@ -7,6 +7,6 @@ module ApplicationHelper
def admin_tool(class_name = "", element = "div", **options, &block)
return unless current_user&.is_admin?
concat content_tag(element, class: "#{class_name}", **options, &block)
concat content_tag(element, class: "admin-tool #{class_name}", **options, &block)
end
end