@kupola/kupola 1.7.3 → 1.7.5

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.
@@ -1068,6 +1068,8 @@
1068
1068
 
1069
1069
  .ds-input input[type="number"] {
1070
1070
  -moz-appearance: textfield;
1071
+ -webkit-appearance: textfield;
1072
+ appearance: textfield;
1071
1073
  }
1072
1074
 
1073
1075
  /* Countdown */
package/css/kupola.css CHANGED
@@ -1,3 +1,23 @@
1
+ :root {
2
+ --bg-base-default: #FFFFFF;
3
+ --bg-base-secondary: #F8F9FA;
4
+ --text-default: #1F2937;
5
+ }
6
+
7
+ [data-theme="dark"] {
8
+ --bg-base-default: #0C0C0D;
9
+ --bg-base-secondary: #1A1B1D;
10
+ --text-default: #E5E7EB;
11
+ }
12
+
13
+ html, body {
14
+ background-color: var(--bg-base-default);
15
+ color: var(--text-default);
16
+ margin: 0;
17
+ padding: 0;
18
+ min-height: 100%;
19
+ }
20
+
1
21
  @import url('colors-and-type.css');
2
22
  @import url('theme-light.css');
3
23
  @import url('theme-dark.css');
@@ -1068,6 +1068,8 @@
1068
1068
 
1069
1069
  .ds-input input[type="number"] {
1070
1070
  -moz-appearance: textfield;
1071
+ -webkit-appearance: textfield;
1072
+ appearance: textfield;
1071
1073
  }
1072
1074
 
1073
1075
  /* Countdown */
@@ -1,3 +1,23 @@
1
+ :root {
2
+ --bg-base-default: #FFFFFF;
3
+ --bg-base-secondary: #F8F9FA;
4
+ --text-default: #1F2937;
5
+ }
6
+
7
+ [data-theme="dark"] {
8
+ --bg-base-default: #0C0C0D;
9
+ --bg-base-secondary: #1A1B1D;
10
+ --text-default: #E5E7EB;
11
+ }
12
+
13
+ html, body {
14
+ background-color: var(--bg-base-default);
15
+ color: var(--text-default);
16
+ margin: 0;
17
+ padding: 0;
18
+ min-height: 100%;
19
+ }
20
+
1
21
  @import url('colors-and-type.css');
2
22
  @import url('theme-light.css');
3
23
  @import url('theme-dark.css');