Skip to content

Commit 6c2550e

Browse files
narrowing sidebar from 120px to 100px and panel from 345px to 335px
1 parent 32c17d7 commit 6c2550e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/DefaultEditor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,13 @@ class DefaultEditor extends Component {
7373
{logo ? logo : null}
7474
<GraphCreatePanel group={_('Graph')} name={_('Create')} />
7575
<GraphSubplotsPanel group={_('Graph')} name={_('Subplots')} />
76-
{this.hasTransforms() && <GraphTransformsPanel group={_('Graph')} name={_('Transforms')} />}
76+
{this.hasTransforms() && <GraphTransformsPanel group={_('Graph')} name={_('Transform')} />}
7777
<StyleTracesPanel group={_('Style')} name={_('Traces')} />
7878
<StyleLayoutPanel group={_('Style')} name={_('Layout')} />
7979
{this.hasAxes() && <StyleAxesPanel group={_('Style')} name={_('Axes')} />}
8080
<StyleLegendPanel group={_('Style')} name={_('Legend')} />
8181
{this.hasColorbars() && <StyleColorbarsPanel group={_('Style')} name={_('Color Bars')} />}
82-
<StyleNotesPanel group={_('Style')} name={_('Annotations')} />
82+
<StyleNotesPanel group={_('Style')} name={_('Annotate')} />
8383
<StyleShapesPanel group={_('Style')} name={_('Shapes')} />
8484
<StyleImagesPanel group={_('Style')} name={_('Images')} />
8585
{this.hasSliders() && <StyleSlidersPanel group={_('Style')} name={_('Sliders')} />}

src/styles/components/fields/_field.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
align-self: center;
4141
}
4242
&__title {
43-
width: 30%;
43+
width: 80px;
4444
//flex-shrink:0;
4545
padding-left: var(--spacing-half-unit);
4646
display: block;

src/styles/variables/_layout.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
22
* Layout
33
*/
4-
$layout-panel-width: 345px;
5-
$layout-sidebar-width: 120px;
4+
$layout-panel-width: 335px;
5+
$layout-sidebar-width: 100px;

0 commit comments

Comments
 (0)