@internetarchive/ia-topnav 1.3.1-alpha10 → 1.3.1-alpha12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@internetarchive/ia-topnav",
3
- "version": "1.3.1-alpha10",
3
+ "version": "1.3.1-alpha12",
4
4
  "description": "Top nav for Internet Archive",
5
5
  "license": "AGPL-3.0-only",
6
6
  "main": "index.js",
@@ -21,7 +21,7 @@
21
21
  "test": "ulimit -v unlimited; web-test-runner 'test/**/*.test.js' --node-resolve --coverage --puppeteer"
22
22
  },
23
23
  "dependencies": {
24
- "@internetarchive/ia-wayback-search": "^0.2.4"
24
+ "@internetarchive/ia-wayback-search": "0.2.5"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@open-wc/demoing-storybook": "^2.4.7",
@@ -7,7 +7,7 @@ export default css`
7
7
  }
8
8
 
9
9
  .menu-item {
10
- display: inline-flex;
10
+ display: inline-block;
11
11
  width: 100%;
12
12
  padding: 0;
13
13
  font-size: 1.6rem;
@@ -22,7 +22,7 @@ export default css`
22
22
  right: 0;
23
23
  left: 0;
24
24
  padding: 0;
25
- height: 36.8rem;
25
+ height: 31.9rem;
26
26
  overflow-x: hidden;
27
27
  font-size: 1.4rem;
28
28
  background: var(--mediaSliderBg);
@@ -43,7 +43,7 @@ export default css`
43
43
  @media (max-width: 889px) {
44
44
  .overflow-clip.open {
45
45
  display: block;
46
- height: 36.7rem;
46
+ height: 35.8rem;
47
47
  left: 4rem;
48
48
  top: 0;
49
49
  }
@@ -24,7 +24,7 @@ export default css`
24
24
  nav.hide-search {
25
25
  grid-template-areas: 'hamburger empty heart user';
26
26
  -ms-grid-columns: 4rem minmax(1rem, 100%) 4rem 4rem;
27
- grid-template-columns: 4rem auto 5rem 4rem;
27
+ grid-template-columns: 4rem auto 4rem 4rem;
28
28
  }
29
29
 
30
30
  .right-side-section {
@@ -229,6 +229,7 @@ export default css`
229
229
  display: block;
230
230
  float: right;
231
231
  vertical-align: middle;
232
+ height: 100%;
232
233
  }
233
234
 
234
235
  .user-info .user-menu img {
@@ -237,7 +238,9 @@ export default css`
237
238
  margin-right: 0.5rem;
238
239
  }
239
240
 
240
-
241
+ .user-menu {
242
+ padding: 1rem 0.5rem;
243
+ }
241
244
  .user-menu.active {
242
245
  background: transparent;
243
246
  }
@@ -12,11 +12,12 @@ export default css`
12
12
 
13
13
  input[type="text"] {
14
14
  width: 100%;
15
- height: 30px;
15
+ height: 3rem;
16
16
  box-sizing: border-box;
17
17
  border: 1px solid var(--savePageInputBorder);
18
18
  border-radius: .5rem;
19
19
  color: var(--grey13);
20
+ font-size: inherit;
20
21
  }
21
22
 
22
23
  input[type="submit"] {