@@ -60,7 +60,8 @@
"gui",
"inspector",
"viewer",
- "nodeEditor"
+ "nodeEditor",
+ "sandbox"
],
"lintModules": [
"core",
@@ -15,6 +15,7 @@ export class FooterButton extends React.Component<IFooterButtonProps> {
if (!this.props.enabled) {
return null;
}
+
return (
<div className="button" onClick={() => this.props.onClick()}>
@@ -126,4 +126,10 @@
background: var(--footer-background);
margin-top: 0px;
-}
+}
+@media (max-width: 768px) {
+ .animationBar {
+ margin-left: 0;
+ }
@@ -164,4 +164,23 @@
+ .footer {
+ grid-template-columns: 0px 1fr 150px;
+ .dropup {
+ .dropup-content {
+ width: 100px;
+ .button {
+ &.long {
+ grid-template-columns: var(--footer-height) calc(100px - var(--footer-height));
@@ -96,3 +96,10 @@ html, body, #root {
+ html {
+ --footer-height: 50px;
+ --font-size: 16px;