adjust theme spacing to not use extra units

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2023-07-07 14:39:26 +02:00
parent 639bbea9f0
commit 3d86be999f
11 changed files with 23 additions and 12 deletions
@@ -13,6 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import React from 'react';
import {
createStyles,
@@ -27,7 +28,7 @@ import {
const BootstrapInput = withStyles((theme: Theme) =>
createStyles({
root: {
margin: `${theme.spacing(1)} 0px`,
margin: theme.spacing(1, 0),
maxWidth: 300,
'label + &': {
marginTop: theme.spacing(3),