File tree Expand file tree Collapse file tree 4 files changed +19
-1
lines changed Expand file tree Collapse file tree 4 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,14 @@ const Splitter = ({
49
49
< S . SplitterContainer id = { id } key = { id } className = { className } onMouseDown = { onMouseDown } onTouchStart = { onTouchStart } >
50
50
< S . ButtonContainer >
51
51
{ isToolTipVisible ? (
52
- < Tooltip title = { tooltip } visible trigger = { [ ] } placement = { tooltipPlacement } overlayClassName = "splitter" >
52
+ < Tooltip
53
+ title = { tooltip }
54
+ visible
55
+ trigger = { [ ] }
56
+ placement = { tooltipPlacement }
57
+ overlayClassName = "splitter"
58
+ getPopupContainer = { node => node . parentElement ?? document . body }
59
+ >
53
60
{ button }
54
61
</ Tooltip >
55
62
) : (
Original file line number Diff line number Diff line change @@ -40,6 +40,11 @@ export const TabsContainer = styled.div`
40
40
.ant-tabs-small > .ant-tabs-nav .ant-tabs-tab {
41
41
padding : 0 0 8px ;
42
42
}
43
+
44
+ .ant-tabs ,
45
+ .ant-tabs .ant-tabs-content {
46
+ height : 100% ;
47
+ }
43
48
` ;
44
49
45
50
export const CountBadge = styled ( Badge ) `
Original file line number Diff line number Diff line change @@ -4,7 +4,10 @@ import styled from 'styled-components';
4
4
5
5
export const Container = styled . div `
6
6
background-color: ${ ( { theme} ) => theme . color . white } ;
7
+ height: 100%;
8
+ overflow-y: auto;
7
9
padding: 24px;
10
+ position: relative;
8
11
` ;
9
12
10
13
export const Title = styled ( Typography . Title ) . attrs ( { level : 2 } ) `
Original file line number Diff line number Diff line change @@ -55,7 +55,10 @@ export const DeleteCheckIcon = styled(DeleteOutlined)`
55
55
56
56
export const AssertionForm = styled . div `
57
57
background-color: ${ ( { theme} ) => theme . color . white } ;
58
+ height: 100%;
59
+ overflow-y: auto;
58
60
padding: 24px;
61
+ position: relative;
59
62
` ;
60
63
61
64
export const AssertionFormTitle = styled ( Typography . Title ) . attrs ( { level : 2 } ) `` ;
You can’t perform that action at this time.
0 commit comments