Skip to content

Commit

Permalink
style :: 그래프 크기
Browse files Browse the repository at this point in the history
  • Loading branch information
dutexion committed Aug 8, 2024
1 parent c756f18 commit ae90d75
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/graph/TraceErrorGraph.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const TraceErrorGraph: React.FC<PlotlyChartProps> = ({ jsonData }) => {
};

const layout: Partial<Plotly.Layout> = {
width: 428,
width: 380,
height: 180,
margin: {
l: 30,
Expand Down
2 changes: 1 addition & 1 deletion src/components/graph/TraceLatencyGraph.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const TraceLatencyGraph: React.FC<PlotlyChartProps> = ({ jsonData }) => {
}));

const layout: Partial<Plotly.Layout> = {
width: 428,
width: 380,
height: 180,
margin: {
l: 30,
Expand Down
2 changes: 1 addition & 1 deletion src/components/graph/TraceRequestGraph.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const TraceRequestGraph: React.FC<PlotlyChartProps> = ({ jsonData }) => {
};

const layout: Partial<Plotly.Layout> = {
width: 428,
width: 380,
height: 180,
margin: {
l: 30,
Expand Down
5 changes: 2 additions & 3 deletions src/pages/Team/deploy/Container/Traces.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -315,10 +315,9 @@ const StatusCodeItem = styled.div`

const GraphContainer = styled.div`
width: 100%;
max-width: 1538px;
max-width: 1280px;
display: flex;
justify-content: center;
gap: 20px;
justify-content: space-between;
`;

const GraphBox = styled.div`
Expand Down

0 comments on commit ae90d75

Please sign in to comment.