@@ -319,7 +319,7 @@ header {
319319}
320320
321321.tutorial-title h2 {
322- font-size : 1 rem ;
322+ font-size : 1.25 rem ;
323323 font-weight : 600 ;
324324 color : var (--zenml-dark );
325325 margin : 0 ;
@@ -448,13 +448,68 @@ footer .run-pipeline-button.running {
448448footer .run-pipeline-button .completed {
449449 background : var (--zenml-green );
450450 color : white;
451+ cursor : default;
452+ }
453+
454+ footer .run-pipeline-button .completed : hover {
455+ background : var (--zenml-green );
456+ transform : none;
457+ box-shadow : none;
451458}
452459
453460footer .run-pipeline-button .failed {
454461 background : var (--zenml-red );
455462 color : white;
456463}
457464
465+
466+ /* Pipeline button group */
467+ .pipeline-button-group {
468+ display : flex;
469+ gap : 8px ;
470+ align-items : center;
471+ }
472+
473+ /* Dashboard button styling - smaller variant */
474+ .dashboard-button-small {
475+ background : var (--vscode-button-secondaryBackground );
476+ border : 1px solid var (--vscode-sideBar-border );
477+ color : var (--vscode-button-secondaryForeground );
478+ padding : 9px 16px ;
479+ border-radius : 6px ;
480+ font-size : 14px ;
481+ font-weight : 500 ;
482+ cursor : pointer;
483+ transition : all 0.3s ease;
484+ display : flex;
485+ align-items : center;
486+ gap : 6px ;
487+ justify-content : center;
488+ font-family : "Inter" , sans-serif;
489+ margin : 0 ;
490+ height : 38px ;
491+ text-decoration : none;
492+ flex-shrink : 0 ;
493+ white-space : nowrap;
494+ box-sizing : border-box;
495+ }
496+
497+ .dashboard-button-small : hover {
498+ background : var (--vscode-button-secondaryHoverBackground );
499+ transform : translateY (-1px );
500+ box-shadow : 0 2px 6px rgba (0 , 0 , 0 , 0.1 );
501+ color : var (--vscode-button-secondaryForeground );
502+ text-decoration : none;
503+ }
504+
505+ .dashboard-button-small : active {
506+ transform : translateY (0 );
507+ }
508+
509+ .dashboard-button-small .codicon {
510+ font-size : 14px ;
511+ }
512+
458513# progress {
459514 height : 4px ;
460515 background-color : var (--vscode-progressBar-background );
0 commit comments