File tree 4 files changed +15
-14
lines changed
4 files changed +15
-14
lines changed Original file line number Diff line number Diff line change 1
1
.dropdown {
2
- width : 192px ;
2
+ /* display: inline-block; */
3
+ width : 180px ;
3
4
padding : 10px ;
4
- margin : auto;
5
+ /* margin: auto; */
5
6
}
6
7
7
8
.dropdown__button {
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ class Dropdown extends Component {
58
58
) ;
59
59
60
60
return (
61
- < span className = "dropdown" >
61
+ < div className = "dropdown" >
62
62
< button type = "button" className = "dropdown__button" >
63
63
See Categories
64
64
< FontAwesomeIcon icon = "caret-down" />
@@ -74,7 +74,7 @@ class Dropdown extends Component {
74
74
</ ul >
75
75
< h5 className = "dropdown__all-farms" onClick = { ( ) => this . handleSeeAllClick ( ) } > See all farms</ h5 >
76
76
</ div >
77
- </ span >
77
+ </ div >
78
78
79
79
) ;
80
80
}
Original file line number Diff line number Diff line change 1
- .search-page__add-farm {
2
- border : 1px solid black;
3
- background-color : lightgray;
4
- padding : 2px ;
5
- font-size : 0.9em ;
6
- top : 80px ;
7
- }
8
-
9
1
.search-page__farm-added--success {
10
2
font-family : 'Lato' , sans-serif;
11
3
color : # 50875f ;
12
4
padding : 10px ;
13
5
}
14
6
7
+ .search-page__under-search-bar {
8
+ display : flex;
9
+ align-items : flex-start;
10
+ justify-content : center;
11
+ }
12
+
15
13
.search-page__button--onboarding {
14
+ padding : 10px 20px ;
16
15
font-size : 1em ;
17
16
border : none;
18
17
background-color : transparent;
Original file line number Diff line number Diff line change @@ -56,14 +56,15 @@ class SearchPage extends Component {
56
56
< Hero />
57
57
{ farmAddStatus }
58
58
< SearchBar onChangePage = { this . changePage } />
59
- < div >
59
+ < div className = "search-page__under-search-bar" >
60
60
< Dropdown onChangePage = { this . changePage } />
61
61
< button
62
62
type = "button"
63
63
onClick = { this . showModal }
64
64
className = "search-page__button--onboarding"
65
65
>
66
- Getting Started
66
+ About
67
+ { ' ' }
67
68
< FontAwesomeIcon icon = "question-circle" />
68
69
</ button >
69
70
</ div >
You can’t perform that action at this time.
0 commit comments