Skip to content

Commit

Permalink
Set a max width for the searchbar
Browse files Browse the repository at this point in the history
  • Loading branch information
Gina Contrino committed Feb 14, 2018
1 parent 2e0a58b commit 88aa306
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/login/login.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
overflow: scroll;

& footer {
padding-top: 7vh /* stylelint-disable-line */;
padding-top: 7vh; /* stylelint-disable-line */
}

& .table {
Expand Down
1 change: 1 addition & 0 deletions src/components/searchBar/searchBar.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
position: relative;
width: var(--search-box-width);
margin-right: 50px;
max-width: 500px;

& .icon {
position: absolute;
Expand Down
2 changes: 1 addition & 1 deletion src/components/send/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { expect } from 'chai';
import { mountWithContext } from '../../../test/utils/mountHelpers';
import MultiStep from '../multiStep';
import Send from './index';
import styles from './styles.css';
import styles from './send.css';

describe('Send', () => {
let wrapper;
Expand Down

0 comments on commit 88aa306

Please sign in to comment.