@ainsleydev/sveltekit-helper 0.6.2 → 0.6.3

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.
@@ -168,16 +168,16 @@ export type TableOfContentsProps = {
168
168
  will-change: color;
169
169
  }
170
170
  .toc__link--active {
171
- color: var(--token-text-action);
171
+ color: var(--toc-colour-active, var(--token-text-action));
172
172
  font-weight: var(--font-weight-medium);
173
173
  }
174
174
  .toc__link:hover {
175
- color: var(--token-text-action);
175
+ color: var(--toc-colour-active, var(--token-text-action));
176
176
  }
177
177
  @media screen and (min-width: 768px) {
178
178
  .toc--border {
179
- margin-left: 3rem;
180
- padding-left: 3rem;
181
- border-left: 1px solid var(--colour-light-600);
179
+ margin-left: var(--toc-border-offset, 3rem);
180
+ padding-left: var(--toc-border-offset, 3rem);
181
+ border-left: 1px solid var(--toc-border-colour, var(--colour-light-600));
182
182
  }
183
183
  }</style>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ainsleydev/sveltekit-helper",
3
- "version": "0.6.2",
3
+ "version": "0.6.3",
4
4
  "description": "SvelteKit utilities, components and helpers for ainsley.dev builds",
5
5
  "license": "MIT",
6
6
  "type": "module",