fix: table widget - cell wrapper property condition changed to remove effect from non related places (#6940)
This commit is contained in:
parent
dbc3ca6bdf
commit
deb84d0cb3
|
|
@ -49,7 +49,7 @@ const ButtonWrapper = styled.div`
|
||||||
display: flex;
|
display: flex;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items; center;
|
align-items: center;
|
||||||
background: ${Colors.WHITE};
|
background: ${Colors.WHITE};
|
||||||
margin-top: 14px;
|
margin-top: 14px;
|
||||||
&&& button:hover {
|
&&& button:hover {
|
||||||
|
|
@ -59,7 +59,7 @@ const ButtonWrapper = styled.div`
|
||||||
|
|
||||||
const ButtonActionsWrapper = styled.div`
|
const ButtonActionsWrapper = styled.div`
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items; center;
|
align-items: center;
|
||||||
&&& button {
|
&&& button {
|
||||||
margin-left: 14px;
|
margin-left: 14px;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -357,7 +357,7 @@ export const CellWrapper = styled.div<{
|
||||||
useLinkToolTip?: boolean;
|
useLinkToolTip?: boolean;
|
||||||
isCellVisible?: boolean;
|
isCellVisible?: boolean;
|
||||||
}>`
|
}>`
|
||||||
display: ${(props) => (props.isCellVisible ? "flex" : "none")};
|
display: ${(props) => (props.isCellVisible !== false ? "flex" : "none")};
|
||||||
|
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user