File tree Expand file tree Collapse file tree 11 files changed +52
-65
lines changed
StackDetail/Configuration Expand file tree Collapse file tree 11 files changed +52
-65
lines changed Original file line number Diff line number Diff line change 33.dimmer {
44 position : fixed ;
55 backdrop-filter : blur (4px );
6- // background: #424240;
7- // opacity: 0.5;
86 height : 100vh ;
97 width : 100vw ;
108 top : 0 ;
119 left : 0 ;
1210 z-index : 9999 ;
1311}
1412
13+ .popupContainer {
14+ z-index : 99999 ;
15+ position : relative ;
16+ }
17+
18+ .popupClose {
19+ background-color : #fff ;
20+ border-radius : 100px ;
21+ position : absolute ;
22+ top : -2rem ;
23+ right : 62vw ;
24+ z-index : 999 ;
25+ }
26+
1527.sidePopup {
1628 background : #ffffff ;
1729 border-radius : 4px ;
1830 position : fixed ;
19- right : 0 ;
31+ right : 2 rem ;
2032 bottom : 0 ;
2133 top : 13rem ;
22- height : 800px ;
23- // height: 677px;
24- min-width : 700px ;
25- overflow-x : auto ;
34+ height : 88rem ;
35+ min-width : 60vw ;
36+ overflow : auto ;
2637}
2738
2839@media (max-width : $md-breakpoint ) {
3243 }
3344}
3445
35- .popupContainer {
36- position : fixed ;
37- height : 100vh ;
38- width : 100vw ;
39- top : 0 ;
40- left : 0 ;
41- z-index : 99999 ;
42- }
43-
44- .popupClose {
45- background-color : #fff ;
46- border-radius : 100px ;
47- position : absolute ;
48- top : 15rem ;
49- right : 70rem ;
50- z-index : 999 ;
51- }
52-
53- .actionSection {
54- min-width : 683px ;
55- background-color : white ;
46+ .actionSection {
47+ width : 60vw ;
48+ background-color : #ffffff ;
5649 position : fixed ;
5750 bottom : 0 ;
5851}
Original file line number Diff line number Diff line change @@ -39,12 +39,12 @@ export const SidePopup: React.FC<{
3939
4040 < Box className = { styles . sidePopup } >
4141 < OutsideClickHandler onOutsideClick = { onClose } >
42- < Box paddingLeft = "md" paddingTop = "sm" >
42+ < Box paddingTop = "sm" >
4343 < iframe
4444 title = "ZenML - Organization Embed"
4545 style = { { border : '0px' , height : '100vh' , width : '100%' } }
4646 // src="https://zenml.hellonext.co/embed/home?no_header=true"
47- src = { flavor . docsUrl }
47+ src = { flavor ?. sdkDocsUrl }
4848 > </ iframe >
4949 </ Box >
5050
Original file line number Diff line number Diff line change @@ -50,14 +50,14 @@ export const Tabs: React.FC<{ pages: TabPage[]; basePath: string }> = ({
5050 < IfElse
5151 condition = { isActive }
5252 renderWhenFalse = { ( ) => (
53- < Truncate maxLines = { 1 } >
54- < Paragraph color = "grey" > { page . text } </ Paragraph >
55- </ Truncate >
53+ < Truncate maxLines = { 1 } >
54+ < Paragraph color = "grey" style = { { padding : '5px 0' } } > { page . text } </ Paragraph >
55+ </ Truncate >
5656 ) }
5757 renderWhenTrue = { ( ) => (
58- < Truncate maxLines = { 1 } >
59- < Paragraph color = "primary" > { page . text } </ Paragraph >
60- </ Truncate >
58+ < Truncate maxLines = { 1 } >
59+ < Paragraph color = "primary" style = { { padding : '5px 0' } } > { page . text } </ Paragraph >
60+ </ Truncate >
6161 ) }
6262 />
6363 </ Link >
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ export const BasePage: React.FC<{
106106 ) ;
107107 } }
108108 >
109- Register Component
109+ Register New Component
110110 </ PrimaryButton >
111111 </ Box >
112112 </ FlexBox >
Original file line number Diff line number Diff line change @@ -430,7 +430,7 @@ export const CreateComponent: React.FC<{ flavor: any }> = ({ flavor }) => {
430430 type : toasterTypes . success ,
431431 } ) ,
432432 ) ;
433- dispatchStackComponentsData ( 1 , 10 ) ;
433+ dispatchStackComponentsData ( 1 , 1 ) ;
434434
435435 history . push (
436436 routePaths . stackComponents . configuration (
Original file line number Diff line number Diff line change 1818 bottom : 0 ;
1919 top : 13rem ;
2020 height : 88rem ;
21- min-width : 45 vw ;
21+ min-width : 60 vw ;
2222 overflow : auto ;
2323}
2424
3030}
3131
3232.actionSection {
33- width : 100 % ;
33+ width : 60 vw ;
3434 background-color : #ffffff ;
3535 position : fixed ;
3636 bottom : 0 ;
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ export const SidePopup: React.FC<{
2222 title = "ZenML - Organization Embed"
2323 style = { { border : '0px' , height : '100vh' , width : '100%' } }
2424 // src="https://zenml.hellonext.co/embed/home?no_header=true"
25- src = { flavor . docsUrl }
25+ src = { flavor . sdkDocsUrl }
2626 > </ iframe >
2727 </ Box >
2828
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ export const useService = ({ stackId }: { stackId: TId }): ServiceInterface => {
3838 } ) ,
3939 ) ;
4040 // eslint-disable-next-line react-hooks/exhaustive-deps
41- } , [ locationPath , stackComponent ] ) ;
41+ } , [ locationPath ] ) ;
4242
4343 const setFetching = ( fetching : boolean ) => {
4444 dispatch ( flavorPagesActions . setFetching ( { fetching } ) ) ;
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ export const BasePage: React.FC<{
9191 history . push ( routePaths . stacks . createStack ( selectedWorkspace ) )
9292 }
9393 >
94- Register Stack
94+ Register New Stack
9595 </ PrimaryButton >
9696 </ Box >
9797 </ FlexBox >
Original file line number Diff line number Diff line change 33.dimmer {
44 position : fixed ;
55 backdrop-filter : blur (4px );
6- // background: #424240;
7- // opacity: 0.5;
86 height : 100vh ;
97 width : 100vw ;
108 top : 0 ;
119 left : 0 ;
1210 z-index : 9999 ;
1311}
1412
13+ .popupContainer {
14+ z-index : 99999 ;
15+ position : relative ;
16+ }
17+
1518.sidePopup {
1619 background : #ffffff ;
1720 border-radius : 4px ;
1821 position : fixed ;
19- right : 0 ;
22+ right : 2 rem ;
2023 bottom : 0 ;
2124 top : 13rem ;
22- height : 800px ;
23- // height: 677px;
24- min-width : 700px ;
25- overflow-x : auto ;
25+ height : 88rem ;
26+ min-width : 60vw ;
27+ overflow : auto ;
2628}
2729
2830@media (max-width : $md-breakpoint ) {
3234 }
3335}
3436
35- .popupContainer {
36- position : fixed ;
37- height : 100vh ;
38- width : 100vw ;
39- top : 0 ;
40- left : 0 ;
41- z-index : 99999 ;
42- }
43-
4437.popupClose {
4538 background-color : #fff ;
4639 border-radius : 100px ;
47- position : absolute ;
48- top : 15 rem ;
49- right : 70 rem ;
50- z-index : 999 ;
40+ position : fixed ;
41+ top : 16 rem ;
42+ right : 62 vw ;
43+ z-index : 99999999999 ;
5144}
5245
5346.actionSection {
54- min- width : 683 px ;
47+ width : 60 vw ;
5548 background-color : white ;
5649 position : fixed ;
5750 bottom : 0 ;
You can’t perform that action at this time.
0 commit comments