We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c22b636 commit 865b51bCopy full SHA for 865b51b
src/pages/plugins-new/index.js
@@ -302,7 +302,9 @@ function PluginsPage() {
302
placeholder={placeholder}
303
value={searchInput}
304
onChange={onChange} />
305
- <button className="button button--lg button--primary">Search</button>
+ <button className={classnames("button button--primary", styles.searchButton)}>
306
+ Search
307
+ </button>
308
</form>
309
</div>
310
src/pages/plugins-new/plugins.module.scss
@@ -1,6 +1,5 @@
1
.searchContainer {
2
- // I hate grid utilities
3
- display: flex !important;
+ display: flex;
4
}
5
6
.searchInput {
@@ -28,6 +27,10 @@
28
27
29
30
+.searchButton {
31
+ font-size: 1.1rem;
32
+}
33
+
34
.pluginCardHeader {
35
display: flex;
36
justify-content: space-between;
0 commit comments