@finsweet/webflow-apps-utils 1.0.38 → 1.0.40
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.
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
fallbackPlacements = [],
|
|
41
41
|
stopPropagation = true,
|
|
42
42
|
fontColor = 'var(--text2)',
|
|
43
|
-
bgColor = 'var(--
|
|
43
|
+
bgColor = 'var(--background3)',
|
|
44
44
|
class: className = '',
|
|
45
45
|
targetClassName = '',
|
|
46
46
|
target,
|
|
@@ -357,7 +357,7 @@
|
|
|
357
357
|
class="arrow"
|
|
358
358
|
id="arrow_{tooltipId}"
|
|
359
359
|
bind:this={arrowElement}
|
|
360
|
-
style="background-color:
|
|
360
|
+
style="background-color: {bgColor};"
|
|
361
361
|
></div>
|
|
362
362
|
{/if}
|
|
363
363
|
</div>
|
|
@@ -382,8 +382,9 @@
|
|
|
382
382
|
z-index: 99999999999;
|
|
383
383
|
border-radius: 4px;
|
|
384
384
|
box-shadow:
|
|
385
|
-
0 0
|
|
386
|
-
|
|
385
|
+
0px 4px 12px 0px rgb(0 0 0 / 15%),
|
|
386
|
+
0px 2px 4px 0px rgb(0 0 0 / 10%),
|
|
387
|
+
0px 0.5px 0.5px 0px rgb(255 255 255 / 10%) inset;
|
|
387
388
|
|
|
388
389
|
color: var(--text2, #b9b9b9);
|
|
389
390
|
|
package/dist/ui/index.css
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600&display=swap');
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
html,
|
|
4
|
+
body,
|
|
5
|
+
#app {
|
|
4
6
|
/* custom scrollbar related */
|
|
5
7
|
--sb-track-color: #1e1e1e;
|
|
6
8
|
--sb-thumb-color: #373737;
|
|
@@ -126,6 +128,10 @@
|
|
|
126
128
|
/* Finsweet Components: super app specific sizes */
|
|
127
129
|
--components-navbar-height: 43px;
|
|
128
130
|
--left-sidebar-width: 274px;
|
|
131
|
+
|
|
132
|
+
height: 100%;
|
|
133
|
+
background: var(--background1);
|
|
134
|
+
font-family: var(--font-stack);
|
|
129
135
|
}
|
|
130
136
|
|
|
131
137
|
*,
|
|
@@ -134,16 +140,6 @@
|
|
|
134
140
|
box-sizing: border-box;
|
|
135
141
|
}
|
|
136
142
|
|
|
137
|
-
html,
|
|
138
|
-
body,
|
|
139
|
-
#app {
|
|
140
|
-
height: 100%;
|
|
141
|
-
background: var(--background1);
|
|
142
|
-
font-family: var(--font-stack);
|
|
143
|
-
/* Prevents layout shift when scrollbar appears, does not work in Safari browsers */
|
|
144
|
-
/* scrollbar-gutter: stable; */
|
|
145
|
-
}
|
|
146
|
-
|
|
147
143
|
body {
|
|
148
144
|
margin: 0;
|
|
149
145
|
color: var(--text1);
|