code7-leia 0.1.143 → 0.1.144
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/dist/code7-leia.cjs.development.js +2 -2
- package/dist/code7-leia.cjs.development.js.map +1 -1
- package/dist/code7-leia.cjs.production.min.js +1 -1
- package/dist/code7-leia.cjs.production.min.js.map +1 -1
- package/dist/code7-leia.esm.js +2 -2
- package/dist/code7-leia.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/FileArea/styles.tsx +3 -3
- package/src/components/TestArea/styles.tsx +3 -3
package/package.json
CHANGED
|
@@ -24,10 +24,10 @@ export const Container = styled.div<ContainerProps>`
|
|
|
24
24
|
#loading::after {
|
|
25
25
|
content: "";
|
|
26
26
|
border: 4px solid #f3f3f3; /* Cor do símbolo de carregamento */
|
|
27
|
-
border-top: 4px solid #
|
|
27
|
+
border-top: 4px solid #35373f; /* Cor do símbolo de carregamento */
|
|
28
28
|
border-radius: 50%;
|
|
29
|
-
width:
|
|
30
|
-
height:
|
|
29
|
+
width: 15px;
|
|
30
|
+
height: 15px;
|
|
31
31
|
animation: spin 1s linear infinite;
|
|
32
32
|
}
|
|
33
33
|
|
|
@@ -25,10 +25,10 @@ export const Container = styled.div<ContainerProps>`
|
|
|
25
25
|
#loading::after {
|
|
26
26
|
content: "";
|
|
27
27
|
border: 4px solid #f3f3f3; /* Cor do símbolo de carregamento */
|
|
28
|
-
border-top: 4px solid #
|
|
28
|
+
border-top: 4px solid #35373f; /* Cor do símbolo de carregamento */
|
|
29
29
|
border-radius: 50%;
|
|
30
|
-
width:
|
|
31
|
-
height:
|
|
30
|
+
width: 15px;
|
|
31
|
+
height: 15px;
|
|
32
32
|
animation: spin 1s linear infinite;
|
|
33
33
|
}
|
|
34
34
|
|