@@ -256,7 +256,7 @@ function App() {
256256 title = {
257257 < span
258258 onClick = { ( ) => openUpdatePage ( item . uuid ) }
259- className = "text-clickable text-gray-900 dark:text-gray-100 !hover:text-blue-600 dark:hover:text-blue-400"
259+ className = "tw- text-clickable tw- text-gray-900 dark:tw- text-gray-100 !hover:tw- text-blue-600 dark:hover:tw- text-blue-400"
260260 >
261261 < Typography . Ellipsis rows = { 1 } expandable = { false } showTooltip = { { mini : true } } >
262262 { item . script ?. name }
@@ -285,7 +285,7 @@ function App() {
285285 </ >
286286 }
287287 >
288- < Space className = "pb-2" >
288+ < Space className = "tw- pb-2" >
289289 < Space direction = "vertical" >
290290 < Text > { t ( "updatepage.old_version_" ) } </ Text >
291291 < Text > { t ( "updatepage.new_version_" ) } </ Text >
@@ -377,31 +377,31 @@ function App() {
377377 return (
378378 < >
379379 {
380- < div className = "mb-2 text-gray-800 dark:text-gray-200" >
381- < div className = "flex flex-row items-center gap-2" >
382- < Typography . Title heading = { 6 } className = "!m-0 text-gray-900 dark:text-gray-100" >
380+ < div className = "tw- mb-2 tw- text-gray-800 dark:tw- text-gray-200" >
381+ < div className = "tw- flex tw- flex-row tw- items-center tw- gap-2" >
382+ < Typography . Title heading = { 6 } className = "!tw- m-0 tw- text-gray-900 dark:tw- text-gray-100" >
383383 { t ( "updatepage.main_header" ) }
384384 </ Typography . Title >
385385 < IconSync
386386 spin = { checkUpdateSpin }
387387 onClick = { ( ) => onCheckUpdateClick ( ) }
388- className = "cursor-pointer text-gray-700 dark:text-gray-300"
388+ className = "tw- cursor-pointer tw- text-gray-700 dark:tw- text-gray-300"
389389 />
390390 </ div >
391- < div className = "flex flex-row indent-4" >
392- < Typography . Text className = "text-gray-700 dark:text-gray-300" > { mStatusText } </ Typography . Text >
391+ < div className = "tw- flex tw- flex-row tw- indent-4" >
392+ < Typography . Text className = "tw- text-gray-700 dark:tw- text-gray-300" > { mStatusText } </ Typography . Text >
393393 </ div >
394394 { mRecords === null ? (
395395 < > </ >
396396 ) : (
397397 < >
398398 { mRecords . site . length === 0 && mRecords . other . length === 0 ? (
399- < div className = "flex flex-row indent-4" >
400- < Text className = "text-gray-700 dark:text-gray-300" > { t ( "updatepage.status_no_update" ) } </ Text >
399+ < div className = "tw- flex tw- flex-row tw- indent-4" >
400+ < Text className = "tw- text-gray-700 dark:tw- text-gray-300" > { t ( "updatepage.status_no_update" ) } </ Text >
401401 </ div >
402402 ) : (
403- < div className = "flex flex-row indent-4" >
404- < Text className = "text-gray-700 dark:text-gray-300" >
403+ < div className = "tw- flex tw- flex-row tw- indent-4" >
404+ < Text className = "tw- text-gray-700 dark:tw- text-gray-300" >
405405 { t ( "updatepage.status_n_update" ) . replace ( "$0" , `${ mRecords . site . length + mRecords . other . length } ` ) }
406406 </ Text >
407407 </ div >
@@ -410,15 +410,15 @@ function App() {
410410 // <div><Text>{"没有已忽略的更新"}</Text></div>
411411 < > </ >
412412 ) : (
413- < div className = "flex flex-row indent-4" >
414- < Text className = "text-gray-700 dark:text-gray-300" >
413+ < div className = "tw- flex tw- flex-row tw- indent-4" >
414+ < Text className = "tw- text-gray-700 dark:tw- text-gray-300" >
415415 { t ( "updatepage.status_n_ignored" ) . replace ( "$0" , `${ mRecords . ignored . length } ` ) }
416416 </ Text >
417417 </ div >
418418 ) }
419419 { mTimeClose >= 0 ? (
420- < div className = "flex flex-row indent-4" >
421- < Text className = "text-gray-700 dark:text-gray-300" >
420+ < div className = "tw- flex tw- flex-row tw- indent-4" >
421+ < Text className = "tw- text-gray-700 dark:tw- text-gray-300" >
422422 { t ( "updatepage.status_autoclose" ) . replace ( "$0" , `${ mTimeClose } ` ) }
423423 </ Text >
424424 </ div >
@@ -439,9 +439,9 @@ function App() {
439439 < Collapse
440440 defaultActiveKey = { [ ] }
441441 className = { [
442- "justify-self-center" ,
442+ "tw- justify-self-center" ,
443443 mRecords . site . length === 0 && mRecords . other . length === 0 && mRecords . ignored . length === 0
444- ? "hidden"
444+ ? "tw- hidden"
445445 : "" ,
446446 ] }
447447 style = { { width : "calc(100vw - 64px)" } }
@@ -481,7 +481,7 @@ function App() {
481481 < CollapseItem
482482 header = { `${ t ( "updatepage.header_other_update" ) } ` }
483483 name = "list-other"
484- className = { [ paramSite ? "" : "hidden" ] }
484+ className = { [ paramSite ? "" : "tw- hidden" ] }
485485 disabled = { ! mRecords ?. other ?. length || isDoingTask }
486486 extra = {
487487 mRecords ?. other ?. length ? (
0 commit comments