otimus-library 0.0.11 → 0.0.12
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,60 +0,0 @@
|
|
|
1
|
-
@use '../variables.scss';
|
|
2
|
-
|
|
3
|
-
.oc.button {
|
|
4
|
-
width: 100%;
|
|
5
|
-
padding: 0.6rem;
|
|
6
|
-
background-color: variables.$color-gray-4;
|
|
7
|
-
color: variables.$color-gray-1;
|
|
8
|
-
|
|
9
|
-
border-radius: 0.7rem;
|
|
10
|
-
border: none;
|
|
11
|
-
|
|
12
|
-
font-weight: 700;
|
|
13
|
-
font-size: 1.1rem;
|
|
14
|
-
transition: 0.3s ease;
|
|
15
|
-
|
|
16
|
-
display: flex;
|
|
17
|
-
justify-content: center;
|
|
18
|
-
gap: 0.5rem;
|
|
19
|
-
|
|
20
|
-
cursor: pointer;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.oc.icon-button{
|
|
24
|
-
width: 32px;
|
|
25
|
-
height: 32px;
|
|
26
|
-
|
|
27
|
-
display: flex;
|
|
28
|
-
align-items: center;
|
|
29
|
-
justify-content: center;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.align-left {
|
|
33
|
-
justify-content: flex-start;
|
|
34
|
-
padding: 0.6rem 1rem;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.btn-green-1 {
|
|
38
|
-
background-color: variables.$color-brand-g-1;
|
|
39
|
-
color: variables.$color-brand-p-2;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.btn-transp-1 {
|
|
43
|
-
background-color: transparent;
|
|
44
|
-
color: variables.$color-gray-2;
|
|
45
|
-
|
|
46
|
-
&:hover {
|
|
47
|
-
filter: brightness(1);
|
|
48
|
-
background-color: variables.$color-gray-5;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.default-btn:hover {
|
|
53
|
-
filter: brightness(0.93);
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.disabled {
|
|
57
|
-
opacity: 0.7;
|
|
58
|
-
cursor: forbidden;
|
|
59
|
-
pointer-events: none;
|
|
60
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
@import './buttons.scss';
|
package/styles/styles.scss
DELETED
package/styles/variables.scss
DELETED
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
// Cor Primária (Roxo)
|
|
2
|
-
$color-brand-p-1: #5505a2;
|
|
3
|
-
$color-brand-p-2: #1e0832;
|
|
4
|
-
$color-brand-p-3: #661eab;
|
|
5
|
-
$color-brand-p-4: #7737b5;
|
|
6
|
-
$color-brand-p-5: #8850be;
|
|
7
|
-
$color-brand-p-6: #9969c7;
|
|
8
|
-
$color-brand-p-7: #bb9cd9;
|
|
9
|
-
|
|
10
|
-
// Variações escuras da cor Primária
|
|
11
|
-
$color-brand-dp-1: #1e0832;
|
|
12
|
-
$color-brand-dp-2: #352147;
|
|
13
|
-
$color-brand-dp-3: #4b395b;
|
|
14
|
-
$color-brand-dp-4: #625270;
|
|
15
|
-
$color-brand-dp-5: #786b84;
|
|
16
|
-
|
|
17
|
-
// Cor secundária (Verde)
|
|
18
|
-
$color-brand-g-1: #00dda3;
|
|
19
|
-
$color-brand-g-2: #1ae0ac;
|
|
20
|
-
$color-brand-g-3: #33e4b5;
|
|
21
|
-
$color-brand-g-4: #4de7bf;
|
|
22
|
-
$color-brand-g-5: #66ebc8;
|
|
23
|
-
$color-brand-g-6: #94ffe3;
|
|
24
|
-
|
|
25
|
-
// Cores de estado/feedback
|
|
26
|
-
$color-success: #4ab858;
|
|
27
|
-
$color-warning: #ebbc2e;
|
|
28
|
-
$color-error: #ed3a3a;
|
|
29
|
-
|
|
30
|
-
// Tons de Cinza
|
|
31
|
-
$color-gray-1: #353535;
|
|
32
|
-
$color-gray-2: #7e8485;
|
|
33
|
-
$color-gray-3: #8f9596;
|
|
34
|
-
$color-gray-4: #d1d5db;
|
|
35
|
-
$color-gray-5: #f7f7f7;
|
|
36
|
-
$color-gray-6: #f8f9ff;
|
|
37
|
-
$color-white: #ffffff;
|
|
38
|
-
|
|
39
|
-
// Cores para Background
|
|
40
|
-
$color-bg-1: $color-gray-5;
|
|
41
|
-
|
|
42
|
-
// Cores para texto
|
|
43
|
-
$color-text-1: $color-gray-1;
|
|
44
|
-
$color-text-2: $color-gray-2;
|
|
45
|
-
$color-text-3: $color-brand-p-1;
|
|
46
|
-
$color-text-4: $color-brand-g-1;
|