Skip to content

Commit a6edf13

Browse files
committed
Format
1 parent fb52036 commit a6edf13

File tree

2 files changed

+66
-10
lines changed

2 files changed

+66
-10
lines changed

lib/error_tracker/web/live/show.html.heex

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,10 @@
3232
:for={{bread_crumb, index} <- Enum.with_index(@occurrence.bread_crumbs)}
3333
class="border-b bg-gray-400/10 border-gray-900 last:border-b-0"
3434
>
35-
<td class="w-11 pl-2 py-4 font-medium text-white relative text-right"><%= length(@occurrence.bread_crumbs) - index %>.</td>
36-
<td class="px-2 py-4 font-medium text-white relative"><%= bread_crumb %></td>
35+
<td class="w-11 pl-2 py-4 font-medium text-white relative text-right">
36+
<%= length(@occurrence.bread_crumbs) - index %>.
37+
</td>
38+
<td class="px-2 py-4 font-medium text-white relative"><%= bread_crumb %></td>
3739
</tr>
3840
</table>
3941
</div>

priv/static/app.css

Lines changed: 62 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -885,10 +885,6 @@ select {
885885
width: 2.5rem;
886886
}
887887

888-
.w-11 {
889-
width: 2.75rem;
890-
}
891-
892888
.w-28 {
893889
width: 7rem;
894890
}
@@ -909,6 +905,42 @@ select {
909905
width: 100%;
910906
}
911907

908+
.w-16 {
909+
width: 4rem;
910+
}
911+
912+
.w-12 {
913+
width: 3rem;
914+
}
915+
916+
.w-8 {
917+
width: 2rem;
918+
}
919+
920+
.w-7 {
921+
width: 1.75rem;
922+
}
923+
924+
.w-6 {
925+
width: 1.5rem;
926+
}
927+
928+
.w-\[5rem\] {
929+
width: 5rem;
930+
}
931+
932+
.w-11 {
933+
width: 2.75rem;
934+
}
935+
936+
.min-w-12 {
937+
min-width: 3rem;
938+
}
939+
940+
.table-auto {
941+
table-layout: auto;
942+
}
943+
912944
.table-fixed {
913945
table-layout: fixed;
914946
}
@@ -1133,10 +1165,6 @@ select {
11331165
padding-bottom: 11.5px;
11341166
}
11351167

1136-
.pl-2 {
1137-
padding-left: 0.5rem;
1138-
}
1139-
11401168
.pr-2 {
11411169
padding-right: 0.5rem;
11421170
}
@@ -1145,6 +1173,10 @@ select {
11451173
padding-right: 1.25rem;
11461174
}
11471175

1176+
.pl-2 {
1177+
padding-left: 0.5rem;
1178+
}
1179+
11481180
.text-left {
11491181
text-align: left;
11501182
}
@@ -1330,10 +1362,32 @@ select {
13301362
border-radius: 4px;
13311363
}
13321364

1365+
.first\:border-y-0:first-child {
1366+
border-top-width: 0px;
1367+
border-bottom-width: 0px;
1368+
}
1369+
1370+
.first\:border-t-0:first-child {
1371+
border-top-width: 0px;
1372+
}
1373+
13331374
.last\:border-b-0:last-child {
13341375
border-bottom-width: 0px;
13351376
}
13361377

1378+
.first-of-type\:border-y-0:first-of-type {
1379+
border-top-width: 0px;
1380+
border-bottom-width: 0px;
1381+
}
1382+
1383+
.first-of-type\:border-t-0:first-of-type {
1384+
border-top-width: 0px;
1385+
}
1386+
1387+
.first-of-type\:border-b-0:first-of-type {
1388+
border-bottom-width: 0px;
1389+
}
1390+
13371391
.last-of-type\:border-b-0:last-of-type {
13381392
border-bottom-width: 0px;
13391393
}

0 commit comments

Comments
 (0)