@triptease/tt-navbar 0.0.52 → 0.0.54
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/dist/src/styles.js +5 -3
- package/dist/src/styles.js.map +1 -1
- package/dist/web/Config.js +1 -1
- package/dist/web/Routes.js +1 -1
- package/dist/web/TtNavbar.js +6 -4
- package/dist/web/TtNavbar.js.map +2 -2
- package/dist/web/getInitialNavbarState.js +1 -1
- package/dist/web/global.d.js +1 -1
- package/dist/web/index.js +6 -4
- package/dist/web/index.js.map +2 -2
- package/dist/web/styles.js +6 -4
- package/dist/web/styles.js.map +2 -2
- package/dist/web/triptease-logo.js +1 -1
- package/dist/web/tt-navbar.js +6 -4
- package/dist/web/tt-navbar.js.map +2 -2
- package/dist/web/urlMappings.js +1 -1
- package/package.json +1 -1
- package/src/styles.ts +5 -3
package/dist/web/urlMappings.js
CHANGED
package/package.json
CHANGED
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,8 @@ 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
|
+
margin-bottom: var(--space-scale-2);
|
|
298
299
|
}
|
|
299
300
|
|
|
300
301
|
#client-selector tt-combobox {
|
|
@@ -311,12 +312,13 @@ export const styles = css`
|
|
|
311
312
|
--tt-combobox-min-width: 244px;
|
|
312
313
|
--tt-combobox-max-width: 244px;
|
|
313
314
|
--tt-combobox-option-selected-color: var(--color-text-inverted-500);
|
|
315
|
+
--tt-combobox-border-color: var(--color-surface-inverted-200);
|
|
314
316
|
}
|
|
315
317
|
|
|
316
318
|
.single-client-name {
|
|
317
319
|
height: 39px;
|
|
318
320
|
padding: var(--space-scale-1); /* match tt-combobox height */
|
|
319
|
-
font-size: var(--font-size-
|
|
320
|
-
color: var(--color-text-inverted-
|
|
321
|
+
font-size: var(--font-size-200);
|
|
322
|
+
color: var(--color-text-inverted-200);
|
|
321
323
|
}
|
|
322
324
|
`;
|