File tree Expand file tree Collapse file tree 2 files changed +10
-11
lines changed
lib/error_tracker/web/live Expand file tree Collapse file tree 2 files changed +10
-11
lines changed Original file line number Diff line number Diff line change 1
1
< . form
2
2
for = { @ search_form }
3
3
id = "search "
4
- class = "mb-4 text-black grid grid-cols-4 gap-2 "
4
+ class = "mb-4 text-black grid md: grid-cols-4 grid-cols-2 gap-2 "
5
5
phx-change = "search "
6
6
>
7
7
< input
46
46
< table class = "w-full text-sm text-left rtl:text-right text-gray-400 table-fixed " >
47
47
< thead class = "text-xs uppercase bg-gray-900 " >
48
48
< tr >
49
- < th scope = "col " class = "px-4 pr-2 py-3 w-128 " > Error</ th >
49
+ < th scope = "col " class = "px-4 pr-2 w-72 " > Error</ th >
50
50
< th scope = "col " class = "px-4 py-3 w-72 " > Occurrences</ th >
51
51
< th scope = "col " class = "px-4 py-3 w-28 " > Status</ th >
52
- < th scope = "col " class = "px-4 py-3 w-32 " > </ th >
52
+ < th scope = "col " class = "px-4 py-3 w-28 " > </ th >
53
53
</ tr >
54
54
</ thead >
55
55
< tbody >
66
66
< . link navigate = { error_path ( @ socket , error ) } class = "absolute inset-1 " >
67
67
< span class = "sr-only " > (<%= sanitize_module ( error . kind ) %> ) <%= error . reason %> </ span >
68
68
</ . link >
69
- < p class = "whitespace-nowrap text-ellipsis w-full overflow-hidden " >
69
+ < p class = "whitespace-nowrap text-ellipsis overflow-hidden " >
70
70
(<%= sanitize_module ( error . kind ) %> ) <%= error . reason %>
71
71
</ p >
72
- < p :if = { ErrorTracker.Error . has_source_info? ( error ) } class = "font-normal text-gray-400 " >
72
+ < p
73
+ :if = { ErrorTracker.Error . has_source_info? ( error ) }
74
+ class = "whitespace-nowrap text-ellipsis overflow-hidden font-normal text-gray-400 "
75
+ >
73
76
<%= sanitize_module ( error . source_function ) %>
74
77
< br />
75
78
<%= error . source_line %>
Original file line number Diff line number Diff line change @@ -893,10 +893,6 @@ select {
893
893
width : 7rem ;
894
894
}
895
895
896
- .w-32 {
897
- width : 8rem ;
898
- }
899
-
900
896
.w-5 {
901
897
width : 1.25rem ;
902
898
}
@@ -917,8 +913,8 @@ select {
917
913
grid-template-columns : repeat (1 , minmax (0 , 1fr ));
918
914
}
919
915
920
- .grid-cols-4 {
921
- grid-template-columns : repeat (4 , minmax (0 , 1fr ));
916
+ .grid-cols-2 {
917
+ grid-template-columns : repeat (2 , minmax (0 , 1fr ));
922
918
}
923
919
924
920
.flex-col {
You can’t perform that action at this time.
0 commit comments