mirror of
https://github.com/scratchfoundation/scratch-paint.git
synced 2024-12-23 05:52:42 -05:00
remove empty box css file
This commit is contained in:
parent
d87adbeac5
commit
b49810a56d
2 changed files with 1 additions and 4 deletions
|
@ -1,2 +0,0 @@
|
|||
.box {
|
||||
}
|
|
@ -6,7 +6,6 @@ import classNames from 'classnames';
|
|||
import PropTypes from 'prop-types';
|
||||
import React from 'react';
|
||||
import stylePropType from 'react-style-proptype';
|
||||
import styles from './box.css';
|
||||
|
||||
const getRandomColor = (function () {
|
||||
// In "DEBUG" mode this is used to output a random background color for each
|
||||
|
@ -53,7 +52,7 @@ const Box = props => {
|
|||
...componentProps
|
||||
} = props;
|
||||
return React.createElement(element, {
|
||||
className: classNames(className, styles.box),
|
||||
className: className,
|
||||
ref: componentRef,
|
||||
style: Object.assign(
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue