Skip to content

Commit d306c0b

Browse files
committed
fix: first switch to Application source results in odd glitch
the height of the lower right split changes momentarily (as presumably monaco-editor loads for the first time)
1 parent b4b8483 commit d306c0b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

plugins/plugin-codeflare/src/components/Chart.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ export default class BaseChart extends React.PureComponent<Props> {
145145
private static readonly titlePosition = {
146146
x: {
147147
left: BaseChart.padding.left - BaseChart.tickLabelFontSize * 4,
148-
right: BaseChart.dimensions.width - BaseChart.tickLabelFontSize * 1.5,
148+
right: BaseChart.dimensions.width - BaseChart.tickLabelFontSize * 2,
149149
},
150150
y: BaseChart.padding.top - BaseChart.fontSize * 1.5,
151151
}

plugins/plugin-codeflare/web/scss/components/Dashboard/_index.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
@include Split(3) {
3232
/* @include Rows(7); */
3333
@include Columns(13);
34-
grid-template-rows: repeat(3, minmax(9vmax, auto)) repeat(4, auto);
34+
grid-template-rows: repeat(3, 10vmax) repeat(4, auto);
3535
grid-template-areas:
3636
"T1 T1 T1 T3 T3 T3 T3 T3 T3 T3 T3 T3 T3"
3737
"T1 T1 T1 T3 T3 T3 T3 T3 T3 T3 T3 T3 T3"

0 commit comments

Comments
 (0)