File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 59
59
font-size : 0.72rem ;
60
60
}
61
61
62
+ .space {
63
+ margin-bottom : 3rem ;
64
+ @media (max-width : 600px ) {
65
+ margin-bottom : 1rem ;
66
+ }
67
+ }
68
+
62
69
.noResults {
63
70
text-align : center ;
64
71
margin-top : 5rem ;
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ export function Search({ tags }: SearchProps) {
56
56
setSelectedTagIds ( ( prev ) =>
57
57
prev . includes ( tag . id )
58
58
? prev . filter ( ( id ) => id !== tag . id )
59
- : [ ...prev , tag . id ]
59
+ : [ ...prev , tag . id ] ,
60
60
) ;
61
61
} ;
62
62
@@ -130,7 +130,7 @@ export function Search({ tags }: SearchProps) {
130
130
selectedTagIds = { selectedTagIds }
131
131
/>
132
132
{ SelectionMarkup }
133
- < div style = { { marginBottom : "3rem" } } />
133
+ < div className = { styles . space } />
134
134
{ projects . length === 0 ? < > { NoResultsMarkup } </ > : < > { ProjectsMarkup } </ > }
135
135
</ div >
136
136
</ div >
You can’t perform that action at this time.
0 commit comments