File tree Expand file tree Collapse file tree 1 file changed +13
-7
lines changed
apps/svelte.dev/src/routes/packages Expand file tree Collapse file tree 1 file changed +13
-7
lines changed Original file line number Diff line number Diff line change 69
69
70
70
.content {
71
71
display : grid ;
72
- grid-template-columns : repeat ( 3 , 1fr ) ;
72
+ grid-template-columns : 1fr ;
73
73
gap : 2rem ;
74
74
margin-top : 1rem ;
75
+
76
+ @media (min-width : 1024px ) {
77
+ grid-template-columns : repeat (3 , 1fr );
78
+ }
75
79
}
76
80
77
81
.item {
81
85
82
86
.show-more-container {
83
87
display : flex ;
84
- justify-content : flex-start ;
88
+ justify-content : flex-end ;
85
89
margin-top : 2rem ;
86
90
87
91
label {
101
105
}
102
106
103
107
button {
104
- /* width: 10rem; */
108
+ order : 1 ;
105
109
}
106
- }
107
110
108
- @media (max-width : 1024px ) {
109
- .content {
110
- grid-template-columns : 1fr ;
111
+ @media (min-width : 1024px ) {
112
+ justify-content : flex-start ;
113
+
114
+ button {
115
+ order : 0 ;
116
+ }
111
117
}
112
118
}
113
119
</style >
You can’t perform that action at this time.
0 commit comments