@griddo/ax 1.75.139 → 1.75.141
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": "@griddo/ax",
|
|
3
3
|
"description": "Griddo Author Experience",
|
|
4
|
-
"version": "1.75.
|
|
4
|
+
"version": "1.75.141",
|
|
5
5
|
"authors": [
|
|
6
6
|
"Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
|
|
7
7
|
"Carlos Torres <carlos.torres@secuoyas.com>",
|
|
@@ -230,5 +230,5 @@
|
|
|
230
230
|
"publishConfig": {
|
|
231
231
|
"access": "public"
|
|
232
232
|
},
|
|
233
|
-
"gitHead": "
|
|
233
|
+
"gitHead": "7ade1706b9320d25589e8328af2fbccde199ebcd"
|
|
234
234
|
}
|
|
@@ -47,6 +47,9 @@ const IconWrapper = styled.div<{ active?: boolean }>`
|
|
|
47
47
|
`;
|
|
48
48
|
|
|
49
49
|
const FrameWrapper = styled.div`
|
|
50
|
+
border-left: 1px solid ${(p) => p.theme.color.uiLine};
|
|
51
|
+
border-right: 1px solid ${(p) => p.theme.color.uiLine};
|
|
52
|
+
border-bottom: 1px solid ${(p) => p.theme.color.uiLine};
|
|
50
53
|
display: flex;
|
|
51
54
|
justify-content: center;
|
|
52
55
|
height: 100%;
|
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
import styled from "styled-components";
|
|
2
2
|
|
|
3
3
|
const Wrapper = styled.div`
|
|
4
|
-
border-left: 1px solid ${(p) => p.theme.color.uiLine};
|
|
5
|
-
border-right: 1px solid ${(p) => p.theme.color.uiLine};
|
|
6
|
-
border-bottom: 1px solid ${(p) => p.theme.color.uiLine};
|
|
7
|
-
overflow: auto;
|
|
8
4
|
scroll-behavior: smooth;
|
|
9
5
|
height: 100%;
|
|
10
6
|
position: relative;
|