@@ -86,7 +86,7 @@ const TopBar = function TopBar({
8686 className = "text-sm max-w-full table-fixed flex divide-x divide-gray-200 text-wrap w-full "
8787 >
8888 < tbody className = "w-1/3" >
89- < tr className = "[&: not(:last-child)] :border-b border-gray-300 text-black transition duration-100 hover:bg-gray-700 hover:text-white md:flex" >
89+ < tr className = "not-last :border-b border-gray-300 text-black transition duration-100 hover:bg-gray-700 hover:text-white md:flex" >
9090 < td className = "py-1 px-4 flex font-bold break-words" > Title</ td >
9191 < td className = "py-1 px-4 flex justify-between items-center break-all" >
9292 < span className = "font-light" >
@@ -97,7 +97,7 @@ const TopBar = function TopBar({
9797 </ td >
9898 </ tr >
9999
100- < tr className = "[&: not(:last-child)] :border-b border-gray-300 text-black transition duration-100 hover:bg-gray-700 hover:text-white md:flex" >
100+ < tr className = "not-last :border-b border-gray-300 text-black transition duration-100 hover:bg-gray-700 hover:text-white md:flex" >
101101 < td className = "py-1 px-4 flex font-bold break-words" > Users</ td >
102102 < td className = "py-1 px-4 flex justify-between items-center break-all" >
103103 < span className = "font-light" >
@@ -114,7 +114,7 @@ const TopBar = function TopBar({
114114 { [ 1 , 2 , 3 ] . map ( ( row : number ) => (
115115 < tr
116116 key = { row }
117- className = "[&: not(:last-child)] :border-b border-gray-300 text-black transition duration-100 hover:bg-gray-700 hover:text-white md:flex"
117+ className = "not-last :border-b border-gray-300 text-black transition duration-100 hover:bg-gray-700 hover:text-white md:flex"
118118 >
119119 < td className = "py-1 px-4 flex font-bold break-words" >
120120 {
@@ -150,7 +150,7 @@ const TopBar = function TopBar({
150150 < div className = "grid md:grid-cols-5 gap-2" >
151151 { Array . from ( runInfoPVs . values ( ) ) . map ( ( runInfoPV ) => (
152152 < div
153- className = "mb-2 shadow-sm rounded-md"
153+ className = "mb-2 shadow-xs rounded-md"
154154 key = { runInfoPV . human_readable_name }
155155 >
156156 < p className = "font-bold" > { runInfoPV . human_readable_name } :</ p > { " " }
0 commit comments