Skip to content

Commit 865b51b

Browse files
committed
Plugin page styling
1 parent c22b636 commit 865b51b

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

src/pages/plugins-new/index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,9 @@ function PluginsPage() {
302302
placeholder={placeholder}
303303
value={searchInput}
304304
onChange={onChange} />
305-
<button className="button button--lg button--primary">Search</button>
305+
<button className={classnames("button button--primary", styles.searchButton)}>
306+
Search
307+
</button>
306308
</form>
307309
</div>
308310
</div>

src/pages/plugins-new/plugins.module.scss

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
.searchContainer {
2-
// I hate grid utilities
3-
display: flex !important;
2+
display: flex;
43
}
54

65
.searchInput {
@@ -28,6 +27,10 @@
2827
}
2928
}
3029

30+
.searchButton {
31+
font-size: 1.1rem;
32+
}
33+
3134
.pluginCardHeader {
3235
display: flex;
3336
justify-content: space-between;

0 commit comments

Comments
 (0)