File tree Expand file tree Collapse file tree
i18n/zh-Hans/docusaurus-plugin-content-docs/current/tutorial/img Expand file tree Collapse file tree Original file line number Diff line number Diff line change 320320
321321.compatList {
322322 display : grid;
323- grid-template-columns : repeat (2 , 160px );
323+ grid-template-columns : repeat (2 , 160px ); /* 2+2+2 on small */
324324 gap : 2rem ;
325325 margin : 2rem auto;
326- max-width : 1000px ;
327- justify-content : center;
328- /* center the grid within container */
329- justify-items : center;
330- /* center items in each cell */
326+ max-width : 1120px ; /* allow 6 columns (6*160 + gaps) */
327+ justify-content : center; /* center the grid within container */
328+ justify-items : center; /* center items in each cell */
331329}
332330
333- /* Medium screens : 3 columns => rows become 3+2 for 5 items */
331+ /* ≥640px : 3 columns => 3+3 */
334332@media (min-width : 640px ) {
335333 .compatList {
336334 grid-template-columns : repeat (3 , 160px );
337335 }
338336}
339337
340- /* Large screens: 5 columns => 5 items on one row */
338+ /* ≥960px: 4 columns => 4+2 */
341339@media (min-width : 960px ) {
342340 .compatList {
343- grid-template-columns : repeat (5 , 160px );
341+ grid-template-columns : repeat (4 , 160px );
342+ }
343+ }
344+
345+ /* ≥1200px: 6 columns => 6 in 1 row */
346+ @media (min-width : 1200px ) {
347+ .compatList {
348+ grid-template-columns : repeat (6 , 160px );
344349 }
345350}
346351
Original file line number Diff line number Diff line change @@ -492,6 +492,21 @@ function HomepageCompatibility() {
492492 </ div >
493493 < span > Taurine</ span >
494494 </ a >
495+ < a
496+ href = "https://zhuxinlang.github.io"
497+ target = "_blank"
498+ rel = "noopener noreferrer"
499+ className = { styles . jailbreakItem }
500+ >
501+ < div className = { styles . jailbreakIconWrapper } >
502+ < img
503+ src = { useBaseUrl ( "img/xinaa15.png" ) }
504+ alt = "XinaA15"
505+ className = { styles . jailbreakIcon }
506+ />
507+ </ div >
508+ < span > XinaA15</ span >
509+ </ a >
495510 < a
496511 href = "https://palera.in"
497512 target = "_blank"
You can’t perform that action at this time.
0 commit comments