File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -151,14 +151,14 @@ const BrowserClient: FC<BrowserClientProps> = ({
151151 </ Toolbar >
152152
153153 { /* File Table */ }
154- < div className = "overflow-x-auto" >
154+ < div className = "overflow-x-auto w-full " >
155155 < Table size = "medium" >
156156 < TableHeader className = "bg-gray-50" >
157157 < TableRow >
158- < TableHeaderCell > Archive Name</ TableHeaderCell >
159- < TableHeaderCell style = { { width : '120px ' } } > Size</ TableHeaderCell >
160- < TableHeaderCell style = { { width : '180px ' } } > Date Modified</ TableHeaderCell >
161- < TableHeaderCell style = { { width : '80px ' } } className = "text-center" > Action</ TableHeaderCell >
158+ < TableHeaderCell className = "min-w-[120px] sm:min-w-[200px]" > Archive Name</ TableHeaderCell >
159+ < TableHeaderCell style = { { width : '100px ' } } className = "hidden sm:table-cell" > Size</ TableHeaderCell >
160+ < TableHeaderCell style = { { width : '150px ' } } > Date Modified</ TableHeaderCell >
161+ < TableHeaderCell style = { { width : '60px ' } } className = "text-center" > Action</ TableHeaderCell >
162162 </ TableRow >
163163 </ TableHeader >
164164 < TableBody >
@@ -195,7 +195,7 @@ const BrowserClient: FC<BrowserClientProps> = ({
195195 </ a >
196196 </ TableCellLayout >
197197 </ TableCell >
198- < TableCell >
198+ < TableCell className = "hidden sm:table-cell" >
199199 < Text size = { 200 } className = "font-mono text-gray-500" >
200200 { filesize ( file . size || 0 , { base : 2 } ) . toString ( ) }
201201 </ Text >
Original file line number Diff line number Diff line change 1616}
1717
1818.log-wrapper {
19- @apply relative w-full;
19+ @apply relative w-full h-full ;
2020}
Original file line number Diff line number Diff line change @@ -35,8 +35,8 @@ export default function LogDialog() {
3535 < span > Backup Execution Logs</ span >
3636 </ div >
3737 </ DialogTitle >
38- < DialogContent >
39- < div className = "min-h-[500px] bg-gray-900 rounded-lg overflow-hidden mt-4" >
38+ < DialogContent className = "overflow-hidden min-h-[500px] flex flex-col p-0" >
39+ < div className = "flex-1 bg-gray-900 rounded-lg overflow-hidden mt-4 flex flex-col h-full w-full max-w-full " >
4040 < Suspense fallback = { < div className = "text-white text-center py-8" > Loading...</ div > } >
4141 < LogView />
4242 </ Suspense >
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { api } from '@/lib/api';
33
44export default function LogView ( ) {
55 return (
6- < div className = "log-wrapper" >
6+ < div className = "log-wrapper flex-1 " >
77 < ScrollFollow
88 startFollowing
99 render = { ( { follow, onScroll } ) => (
You can’t perform that action at this time.
0 commit comments