@triptease/tt-navbar 0.0.52 → 0.0.53

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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @triptease/tt-navbar v0.0.52
2
+ * @triptease/tt-navbar v0.0.53
3
3
  */
4
4
 
5
5
  // src/urlMappings.ts
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Webcomponent tt-navbar following open-wc recommendations",
4
4
  "license": "MIT",
5
5
  "author": "tt-navbar",
6
- "version": "0.0.52",
6
+ "version": "0.0.53",
7
7
  "type": "module",
8
8
  "main": "dist/src/index.js",
9
9
  "module": "dist/src/index.js",
package/src/styles.ts CHANGED
@@ -96,7 +96,6 @@ export const styles = css`
96
96
  display: flex;
97
97
  flex-direction: column;
98
98
  margin-top: auto;
99
- gap: var(--space-scale-2);
100
99
  width: 100%;
101
100
 
102
101
  .external-link {
@@ -295,6 +294,7 @@ export const styles = css`
295
294
  #client-selector {
296
295
  display: flex;
297
296
  align-items: center;
297
+ padding: var(--space-scale-1) 0;
298
298
  }
299
299
 
300
300
  #client-selector tt-combobox {
@@ -311,12 +311,13 @@ export const styles = css`
311
311
  --tt-combobox-min-width: 244px;
312
312
  --tt-combobox-max-width: 244px;
313
313
  --tt-combobox-option-selected-color: var(--color-text-inverted-500);
314
+ --tt-combobox-border-color: var(--color-surface-inverted-200);
314
315
  }
315
316
 
316
317
  .single-client-name {
317
318
  height: 39px;
318
319
  padding: var(--space-scale-1); /* match tt-combobox height */
319
- font-size: var(--font-size-100);
320
- color: var(--color-text-inverted-400);
320
+ font-size: var(--font-size-200);
321
+ color: var(--color-text-inverted-200);
321
322
  }
322
323
  `;