diff --git a/client/modules/IDE/components/Preferences.js b/client/modules/IDE/components/Preferences.js index 21169e72..a7ed6627 100644 --- a/client/modules/IDE/components/Preferences.js +++ b/client/modules/IDE/components/Preferences.js @@ -23,18 +23,28 @@ function Preferences(props) {

Preferences

-

Text Size

- - + - +

Indentation Amount

- + - +
diff --git a/client/modules/IDE/components/Toolbar.js b/client/modules/IDE/components/Toolbar.js index 89cfec4e..1c6e0a98 100644 --- a/client/modules/IDE/components/Toolbar.js +++ b/client/modules/IDE/components/Toolbar.js @@ -24,12 +24,18 @@ function Toolbar(props) { return (
p5js Logo - - +
+
); } diff --git a/client/styles/abstracts/_placeholders.scss b/client/styles/abstracts/_placeholders.scss index 4b89cf7c..87858e12 100644 --- a/client/styles/abstracts/_placeholders.scss +++ b/client/styles/abstracts/_placeholders.scss @@ -106,3 +106,12 @@ color: $light-primary-text-color; } } + +%fake-label { + position:absolute; + left:-10000px; + top:auto; + width:1px; + height:1px; + overflow:hidden; +} diff --git a/client/styles/components/_preferences.scss b/client/styles/components/_preferences.scss index 35371645..eaba7415 100644 --- a/client/styles/components/_preferences.scss +++ b/client/styles/components/_preferences.scss @@ -79,3 +79,7 @@ @extend %preference-option--selected; } } + +.preference__button-label { + @extend %fake-label +} diff --git a/client/styles/components/_toolbar.scss b/client/styles/components/_toolbar.scss index 1bad6fd1..3f981dd3 100644 --- a/client/styles/components/_toolbar.scss +++ b/client/styles/components/_toolbar.scss @@ -54,3 +54,7 @@ color: $light-inactive-text-color; } } + +.toolbar__button-label { + @extend %fake-label +}