@antscorp/antsomi-ui 1.3.5-beta.302 → 1.3.5-beta.303
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.
|
@@ -37,8 +37,6 @@ export const StyledDrawer = styled(Drawer) `
|
|
|
37
37
|
}
|
|
38
38
|
`;
|
|
39
39
|
export const Content = styled.div `
|
|
40
|
-
display: flex;
|
|
41
|
-
flex-direction: column;
|
|
42
40
|
position: relative;
|
|
43
41
|
overflow: auto;
|
|
44
42
|
flex: 1 1 0%;
|
|
@@ -114,7 +112,6 @@ export const DrawerHeader = styled(Flex) `
|
|
|
114
112
|
padding: 0px 20px;
|
|
115
113
|
box-sizing: border-box;
|
|
116
114
|
background-color: ${globalToken === null || globalToken === void 0 ? void 0 : globalToken.bw0};
|
|
117
|
-
flex-shrink: 0;
|
|
118
115
|
z-index: 20;
|
|
119
116
|
|
|
120
117
|
${props => props.height &&
|
|
@@ -98,28 +98,28 @@ export const StyledSelect = styled(AntdSelect) `
|
|
|
98
98
|
}
|
|
99
99
|
`;
|
|
100
100
|
export const StyledTag = styled(Tag) `
|
|
101
|
-
position: relative;
|
|
102
|
-
display: flex;
|
|
103
|
-
align-items: center;
|
|
104
|
-
width: fit-content;
|
|
105
|
-
height: 24px;
|
|
106
|
-
margin-right: 5px;
|
|
107
|
-
padding: 5px 10px;
|
|
108
|
-
border-radius: 15px;
|
|
109
|
-
border: none;
|
|
110
|
-
background-color: ${(_q = THEME.token) === null || _q === void 0 ? void 0 : _q.blue2};
|
|
111
|
-
cursor: pointer;
|
|
101
|
+
position: relative !important;
|
|
102
|
+
display: flex !important;
|
|
103
|
+
align-items: center !important;
|
|
104
|
+
width: fit-content !important;
|
|
105
|
+
height: 24px !important;
|
|
106
|
+
margin-right: 5px !important;
|
|
107
|
+
padding: 5px 10px !important;
|
|
108
|
+
border-radius: 15px !important;
|
|
109
|
+
border: none !important;
|
|
110
|
+
background-color: ${(_q = THEME.token) === null || _q === void 0 ? void 0 : _q.blue2} !important;
|
|
111
|
+
cursor: pointer !important;
|
|
112
112
|
|
|
113
113
|
.antsomi-tag-close-icon {
|
|
114
|
-
opacity: 0;
|
|
115
|
-
position: absolute;
|
|
116
|
-
right: 2px;
|
|
117
|
-
transition: all 0.3s;
|
|
114
|
+
opacity: 0 !important;
|
|
115
|
+
position: absolute !important;
|
|
116
|
+
right: 2px !important;
|
|
117
|
+
transition: all 0.3s !important;
|
|
118
118
|
}
|
|
119
119
|
|
|
120
120
|
&:hover {
|
|
121
121
|
.antsomi-tag-close-icon {
|
|
122
|
-
opacity: 1;
|
|
122
|
+
opacity: 1 !important;
|
|
123
123
|
}
|
|
124
124
|
}
|
|
125
125
|
`;
|