File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1010 --color-dark-input-border : # 424242 ;
1111 /* layout */
1212 --breakpoint-3xl : 112rem ;
13+ --breakpoint-4xl : 136rem ;
14+ --breakpoint-5xl : 160rem ;
15+ --breakpoint-6xl : 184rem ;
16+ --breakpoint-7xl : 208rem ;
1317}
1418
1519/* CSS 自定义变量 - Light Theme */
Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ const LinkGridBase: React.FC<LinkGridProps> = ({
160160 disabled = { ! isDraggingEnabled }
161161 >
162162 < div
163- className = { `grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-3 xl:grid-cols-4 2xl:grid-cols-5 3xl:grid-cols-6 gap-x-8 gap-y-6 p-4 sm:p-8 md:px-10 max-w-full ${ className || '' } ` }
163+ className = { `grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-3 xl:grid-cols-4 2xl:grid-cols-5 3xl:grid-cols-6 4xl:grid-cols-7 5xl:grid-cols-8 6xl:grid-cols-9 7xl:grid-cols-10 gap-x-8 gap-y-6 p-4 sm:p-8 md:px-10 max-w-full ${ className || '' } ` }
164164 style = { { ...style , width : '100%' , boxSizing : 'border-box' } }
165165 role = "region"
166166 aria-label = { searchQuery . trim ( ) ? `搜索结果:${ displayedLinks . length } 个链接` : `${ currentCategory } 分类:${ displayedLinks . length } 个链接` }
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import { Card, Skeleton } from 'antd';
1111 */
1212export const LinkGridSkeleton : React . FC = ( ) => {
1313 return (
14- < div className = "grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-3 xl:grid-cols-4 2xl:grid-cols-5 3xl:grid-cols-6 gap-4 p-8" >
14+ < div className = "grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-3 xl:grid-cols-4 2xl:grid-cols-5 3xl:grid-cols-6 4xl:grid-cols-7 5xl:grid-cols-8 6xl:grid-cols-9 7xl:grid-cols-10 gap-4 p-8" >
1515 { Array . from ( { length : 12 } ) . map ( ( _ , index ) => (
1616 < Card
1717 key = { index }
You can’t perform that action at this time.
0 commit comments