@asd20/ui 3.2.392 → 3.2.393

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
@@ -5,7 +5,7 @@
5
5
  "*.scss",
6
6
  "*.vue"
7
7
  ],
8
- "version": "3.2.392",
8
+ "version": "3.2.393",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -156,9 +156,7 @@ export default {
156
156
  },
157
157
  setFocusItem() {
158
158
  let el = document.getElementById(
159
- `asd20-site-menu__item-${this.activeSectionIndex}-${
160
- this.focusedItemIndex
161
- }`
159
+ `asd20-site-menu__item-${this.activeSectionIndex}-${this.focusedItemIndex}`
162
160
  )
163
161
  el.focus()
164
162
  },
@@ -236,9 +234,10 @@ export default {
236
234
  left: 0;
237
235
  top: 0;
238
236
  right: space(2);
239
- bottom: space(7);
237
+ bottom: 0;
240
238
  background: var(--website-menu__open-background-color, white);
241
239
  overflow: auto;
240
+ overflow-y: scroll;
242
241
  }
243
242
 
244
243
  .asd20-table-of-contents {
@@ -262,7 +261,7 @@ export default {
262
261
  flex-grow: 0;
263
262
  justify-content: space-between;
264
263
  align-items: center;
265
- padding: space(1) space(1);
264
+ padding: space(0.5) space(0.5);
266
265
  cursor: pointer;
267
266
  transition: background asd20-speed(1) ease-in-out;
268
267
  box-shadow: 0 -1px 0 0 var(--website-menu__divider-color) inset;
@@ -305,6 +304,7 @@ export default {
305
304
  top: 0;
306
305
  right: 0;
307
306
  bottom: 0;
307
+ overflow-y: scroll;
308
308
  &__back {
309
309
  display: flex;
310
310
  justify-content: flex-start;
@@ -384,6 +384,11 @@ export default {
384
384
  .asd20-site-menu__viewport {
385
385
  right: 50vw;
386
386
  }
387
+ .asd20-table-of-contents {
388
+ &__item {
389
+ padding: space(1);
390
+ }
391
+ }
387
392
  }
388
393
 
389
394
  @media (min-width: 1024px) {