@neo4j-ndl/base 3.0.0-alpha-9886872 → 3.0.0-alpha-73cdbc3
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/lib/cjs/tokens/js/storybook-design-token.js +1 -1
- package/lib/cjs/tokens/js/tokens-esm.js +1 -1
- package/lib/cjs/tokens/js/tokens.js +1 -1
- package/lib/esm/tokens/js/storybook-design-token.js +1 -1
- package/lib/esm/tokens/js/tokens-esm.js +1 -1
- package/lib/esm/tokens/js/tokens.js +1 -1
- package/lib/neo4j-ds-styles.css +11 -3
- package/lib/tokens/css/tokens.css +1 -1
- package/lib/tokens/js/tokens-raw.js +1 -1
- package/lib/tokens/js/tokens.js +1 -1
- package/lib/tokens/scss/tokens.scss +1 -1
- package/lib/types/tokens/js/storybook-design-token.d.ts +1 -1
- package/package.json +1 -1
package/lib/neo4j-ds-styles.css
CHANGED
|
@@ -2936,11 +2936,14 @@ a.ndl-btn {
|
|
|
2936
2936
|
.ndl-dialog {
|
|
2937
2937
|
border-radius:16px;
|
|
2938
2938
|
background-color:rgb(var(--theme-palette-neutral-bg-weak));
|
|
2939
|
-
padding:
|
|
2939
|
+
padding:32px;
|
|
2940
2940
|
--tw-shadow:var(--theme-shadow-overlay);
|
|
2941
2941
|
--tw-shadow-colored:var(--theme-shadow-overlay);
|
|
2942
2942
|
box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2943
2943
|
}
|
|
2944
|
+
.ndl-dialog .ndl-dialog-type-icon{
|
|
2945
|
+
width:88px;
|
|
2946
|
+
}
|
|
2944
2947
|
.ndl-dialog .ndl-dialog-type-icon.ndl-info {
|
|
2945
2948
|
color:rgb(var(--theme-palette-primary-icon));
|
|
2946
2949
|
}
|
|
@@ -2953,13 +2956,18 @@ a.ndl-btn {
|
|
|
2953
2956
|
.ndl-dialog .ndl-dialog-type-icon.ndl-danger {
|
|
2954
2957
|
color:rgb(var(--theme-palette-danger-icon));
|
|
2955
2958
|
}
|
|
2959
|
+
.ndl-dialog.ndl-with-icon .ndl-dialog-close {
|
|
2960
|
+
top:48px;
|
|
2961
|
+
}
|
|
2962
|
+
.ndl-dialog.ndl-with-icon .ndl-dialog-header {
|
|
2963
|
+
margin-bottom:24px;
|
|
2964
|
+
}
|
|
2956
2965
|
.ndl-dialog .ndl-dialog-close {
|
|
2957
2966
|
position:absolute;
|
|
2958
|
-
top:48px;
|
|
2959
2967
|
right:48px;
|
|
2960
2968
|
}
|
|
2961
2969
|
.ndl-dialog-header {
|
|
2962
|
-
margin-bottom:
|
|
2970
|
+
margin-bottom:4px;
|
|
2963
2971
|
}
|
|
2964
2972
|
.ndl-dialog.ndl-with-close-button .ndl-dialog-header {
|
|
2965
2973
|
margin-right:48px;
|
package/lib/tokens/js/tokens.js
CHANGED