Skip to content

Commit 5f18919

Browse files
committed
Add missing border color to tag elements
1 parent b32c41a commit 5f18919

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

app/views/accounts/contacts/_contact.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<tr id="<%= dom_id(contact, :contact_index_page) %>" is='turbo-frame' class="border-b-2 border-light-palette-p3 last:border-none" data-controller='load-lucid-icons load-flowbite'>
22
<td class="py-2.5 pl-4 pr-4 flex-shrink-0">
33
<div class="w-[52px] h-[52px] flex">
4-
<div class="border-2 bg-brand-palette-08 rounded-md h-full w-full flex items-center">
4+
<div class="border-2 color-border-default bg-brand-palette-08 rounded-md h-full w-full flex items-center">
55
<i data-lucide="user" class="stroke-dark-gray-palette-p4 m-auto"></i>
66
</div>
77
</div>

app/views/accounts/deals/_deal.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<tr id="deal_<%= deal.id %>" is='turbo-frame' class="border-b-2 border-light-palette-p3 last:border-none" data-controller='load-lucid-icons'>
22
<td class="py-2.5 pl-4 pr-4 flex-shrink-0">
33
<div class="w-[52px] h-[52px] flex">
4-
<div class="border-2 bg-brand-palette-08 rounded-md h-full w-full flex items-center justify-center color-fg-default">
4+
<div class="border-2 color-border-default bg-brand-palette-08 rounded-md h-full w-full flex items-center justify-center color-fg-default">
55
<%= embedded_svg("deals-icon.svg", class: "fill-dark-gray-palette-p3 m-auto w-6 h-6 ") %>
66
</div>
77
</div>

app/views/accounts/products/_select_product_search_product.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<% if model.attachments.present? %>
55
<%= image_tag model.attachments.first.file, class:"block w-full w-full h-full rounded-lg", alt: model.attachments.first.file.filename.to_s %>
66
<% else%>
7-
<div class="border-2 bg-brand-palette-08 rounded-md h-full w-full flex items-center">
7+
<div class="border-2 color-border-default bg-brand-palette-08 rounded-md h-full w-full flex items-center">
88
<i data-lucide="image" class='stroke-dark-gray-palette-p4 m-auto'></i>
99
</div>
1010
<% end %>

app/views/accounts/settings/deals/deal_lost_reasons/_deal_lost_reason.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<tr id="<%= dom_id(deal_lost_reason, :settings__deals__deal_lost_reasons__deal_lost_reason) %>" is='turbo-frame' class="border-b-2 border-light-palette-p3 last:border-none" data-controller='load-lucid-icons load-flowbite'>
22
<td class="py-2.5 pl-4 pr-4 flex-shrink-0">
33
<div class="w-[52px] h-[52px] flex">
4-
<div class="border-2 bg-brand-palette-08 rounded-md h-full w-full flex items-center color-fg-soft">
4+
<div class="border-2 color-border-default bg-brand-palette-08 rounded-md h-full w-full flex items-center color-fg-soft">
55
<i data-lucide="clipboard-x" class="m-auto"></i>
66
</div>
77
</div>

app/views/accounts/users/_user.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<img class="rounded-md h-full w-full object-cover" src="<%= user.avatar_url %>" data-src="<%= user.avatar_url %>" data-sub-html="<%= user.full_name %>" alt="<%= user.full_name %>" >
77
</div>
88
<% else %>
9-
<div class="border-2 bg-brand-palette-08 rounded-md h-full w-full flex items-center color-fg-soft">
9+
<div class="border-2 color-border-default bg-brand-palette-08 rounded-md h-full w-full flex items-center color-fg-soft">
1010
<i data-lucide="user-cog" class="m-auto"></i>
1111
</div>
1212
<% end %>

app/views/components/products/_images_carousel_list.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
</button>
3131
</div>
3232
<% else %>
33-
<div class="border-2 bg-brand-palette-08 rounded-md h-full w-full flex items-center">
33+
<div class="border-2 color-border-default bg-brand-palette-08 rounded-md h-full w-full flex items-center">
3434
<i data-lucide="image" class='stroke-dark-gray-palette-p4 m-auto'></i>
3535
</div>
3636
<% end %>

app/views/components/skeleton/_deal_product_card.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div class='border-[1px] px-2 py-4 border-brand-palette-07 rounded-lg animate-pulse' >
22
<div class= "flex items-center gap-4 mb-4">
3-
<div class="border-2 bg-brand-palette-08 rounded-md h-16 w-16 flex items-center">
3+
<div class="border-2 color-border-default bg-brand-palette-08 rounded-md h-16 w-16 flex items-center">
44
<i data-lucide="image" class='stroke-dark-gray-palette-p4 m-auto'></i>
55
</div>
66
<div class="mr-auto grid gap-2">

app/views/layouts/devise.html.erb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
<%= embedded_svg("logo-patinha.svg", class: 'fill-brand-palette-03') %>
5656
</div>
5757
</div>
58-
<div class='border rounded-[32px] boder-[#D5D5D5] p-3'>
58+
<div class='border rounded-[32px] border-color-default p-3'>
5959
<ul class='flex space-x-[-10px]'>
6060
<li class='w-8 h-8 border-2 border-light-palette-p5 rounded-[32px]'>
6161
<%= image_tag "leads-list-onborading-1.jpg" , class: 'w-full h-full object-cover rounded-[32px]' %>
@@ -85,7 +85,7 @@
8585
<%= image_tag "clara-onboarding.jpg" , class: 'w-full h-full object-cover rounded-[32px]' %>
8686
</div>
8787
<p class='typography-body-s-lh150 mb-0,5'>Clara, 24</p>
88-
<span class='text-xs leading-none border rounded-full boder-[#D5D5D5] px-1 py-0.5'>
88+
<span class='text-xs leading-none border rounded-full border-color-default px-1 py-0.5'>
8989
<%= t('views.layouts.devise.new_lead') %>
9090
</span>
9191
<div class='flex gap-3 mt-1 items-center'>
@@ -100,7 +100,7 @@
100100
</div>
101101
<div class='hidden min-[1739px]:grid gap-2.5 grid-rows-[1fr_2fr_3fr]'>
102102
<div class='grid grid-cols-[1fr_1fr_150px] gap-2.5'>
103-
<div class='border rounded-[32px] boder-[#D5D5D5] p-5 typography-body-s-lh150'>
103+
<div class='border rounded-[32px] border-color-default p-5 typography-body-s-lh150'>
104104
<%= image_tag 'logo.svg', class: 'w-[100px] mb-2.5' %>
105105
<p>
106106
<%= t('views.layouts.devise.mastery', crm_name: 'Woof') %>

0 commit comments

Comments
 (0)