@wizco/fenixds-core 1.0.7 → 1.0.8
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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wizco/fenixds-core",
|
|
3
3
|
"description": "Fenix design system é um produto da Wiz com ativos de design e código de front-end para ajudar as equipes na criação dos seus produtos.",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.8",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"author": "Raul Melo Fernandez",
|
package/styles/core.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
:root {
|
|
2
2
|
--wco-font-family: 'Figtree', sans-serif;
|
|
3
|
-
--wco-color-primary-text: #
|
|
3
|
+
--wco-color-primary-text: #fcfcfc;
|
|
4
4
|
--wco-color-primary-50: #fff0e4;
|
|
5
5
|
--wco-color-primary-100: #ffb578;
|
|
6
6
|
--wco-color-primary-300: #ff8826;
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
--wco-color-primary-600: #bf5600;
|
|
9
9
|
--wco-color-primary-700: #8f4000;
|
|
10
10
|
--wco-color-primary-900: #301600;
|
|
11
|
-
--wco-color-secondary-text: #
|
|
11
|
+
--wco-color-secondary-text: #fcfcfc;
|
|
12
12
|
--wco-color-secondary-50: #ecdff0;
|
|
13
13
|
--wco-color-secondary-100: #c69ed3;
|
|
14
14
|
--wco-color-secondary-300: #aa6ebc;
|
|
@@ -623,7 +623,7 @@ a.btn {
|
|
|
623
623
|
button.btn.btn-primary,
|
|
624
624
|
a.btn.btn-primary {
|
|
625
625
|
--bgBtn: var(--wco-color-primary-600);
|
|
626
|
-
--textBtn: var(--wco-color-primary-
|
|
626
|
+
--textBtn: var(--wco-color-primary-text);
|
|
627
627
|
--btn-focus: var(--wco-color-primary-900); }
|
|
628
628
|
button.btn.btn-primary:hover:not(.btn-outline),
|
|
629
629
|
a.btn.btn-primary:hover:not(.btn-outline) {
|
|
@@ -799,6 +799,12 @@ a.btn {
|
|
|
799
799
|
100% {
|
|
800
800
|
transform: scale(1); } }
|
|
801
801
|
|
|
802
|
+
.wco-panel {
|
|
803
|
+
display: block;
|
|
804
|
+
padding: var(--wco-spacing-xs);
|
|
805
|
+
border-radius: var(--wco-radius-md);
|
|
806
|
+
width: 100%; }
|
|
807
|
+
|
|
802
808
|
.display-1,
|
|
803
809
|
.display-2,
|
|
804
810
|
.display-3,
|
package/styles/scss/button.scss
CHANGED
package/styles/scss/core.scss
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
:root {
|
|
2
2
|
--wco-font-family: 'Figtree', sans-serif;
|
|
3
|
-
--wco-color-primary-text: #
|
|
3
|
+
--wco-color-primary-text: #fcfcfc;
|
|
4
4
|
--wco-color-primary-50: #fff0e4;
|
|
5
5
|
--wco-color-primary-100: #ffb578;
|
|
6
6
|
--wco-color-primary-300: #ff8826;
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
--wco-color-primary-600: #bf5600;
|
|
9
9
|
--wco-color-primary-700: #8f4000;
|
|
10
10
|
--wco-color-primary-900: #301600;
|
|
11
|
-
--wco-color-secondary-text: #
|
|
11
|
+
--wco-color-secondary-text: #fcfcfc;
|
|
12
12
|
--wco-color-secondary-50: #ecdff0;
|
|
13
13
|
--wco-color-secondary-100: #c69ed3;
|
|
14
14
|
--wco-color-secondary-300: #aa6ebc;
|