diff --git a/app/assets/tailwind/maybe-design-system.css b/app/assets/tailwind/maybe-design-system.css index 61a3de14..def88d4e 100644 --- a/app/assets/tailwind/maybe-design-system.css +++ b/app/assets/tailwind/maybe-design-system.css @@ -508,6 +508,10 @@ @apply transition-all duration-300; } + .btn--round { + @apply rounded-full p-2 sm:rounded-lg sm:px-3 sm:py-2 + } + .btn--primary { @apply button-bg-primary text-white disabled:text-gray-400; @apply hover:button-bg-primary-hover; diff --git a/app/helpers/forms_helper.rb b/app/helpers/forms_helper.rb index d2f6cb04..1ac7ae4d 100644 --- a/app/helpers/forms_helper.rb +++ b/app/helpers/forms_helper.rb @@ -31,8 +31,8 @@ end private def radio_tab_contents(label:, icon:) tag.div(class: "flex px-4 py-1 rounded-lg items-center space-x-2 justify-center text-subdued group-has-checked:bg-container group-has-checked:text-gray-800 group-has-checked:shadow-sm") do - concat lucide_icon(icon, class: "w-5 h-5") - concat tag.span(label, class: "group-has-checked:font-semibold") + concat lucide_icon(icon, class: "w-[clamp(15px,1.8vw,20px)] h-[clamp(15px,1.8vw,20px)]") + concat tag.span(label, class: "group-has-checked:font-semibold text-[clamp(14px,1.5vw,16px)]") end end end diff --git a/app/helpers/mfa_helper.rb b/app/helpers/mfa_helper.rb index f2d69ecc..741705c6 100644 --- a/app/helpers/mfa_helper.rb +++ b/app/helpers/mfa_helper.rb @@ -8,7 +8,7 @@ module MfaHelper svg_attributes: { width: "240", height: "240", - viewBox: "0 0 65 65" + viewBox: "0 0 60 60" } ) diff --git a/app/views/account/entries/_entry_group.html.erb b/app/views/account/entries/_entry_group.html.erb index 36aeb27a..d2930e25 100644 --- a/app/views/account/entries/_entry_group.html.erb +++ b/app/views/account/entries/_entry_group.html.erb @@ -1,6 +1,6 @@ <%# locals: (date:, entries:, content:, totals: false) %> -
<%= t(".new_account") %>
+<%= t(".new_account") %>
<% end %>