mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-21 16:13:57 +00:00
Merge branch 'day-19-factory' of https://github.com/thepaperpilot/Advent-Incremental into day-19-factory
This commit is contained in:
commit
97ece7bb07
2 changed files with 16 additions and 19 deletions
|
@ -38,18 +38,14 @@ import _metal from "../symbols/metal.png";
|
||||||
import _plastic from "../symbols/plastic.png";
|
import _plastic from "../symbols/plastic.png";
|
||||||
import boxes from "./boxes";
|
import boxes from "./boxes";
|
||||||
import coal from "./coal";
|
import coal from "./coal";
|
||||||
import {
|
import _bear from "./factory-components/bear.svg";
|
||||||
default as _bear,
|
import _bearMaker from "./factory-components/bearmaker.svg";
|
||||||
default as _circuitBoard,
|
import _stuffing from "./factory-components/stuffing.svg";
|
||||||
default as _console,
|
import _console from "./factory-components/console.svg";
|
||||||
default as _stuffing
|
import _circuitBoard from "./factory-components/circuit.svg";
|
||||||
} from "./factory-components/bear.svg";
|
import _stuffingMaker from "./factory-components/stuffingmaker.svg";
|
||||||
import {
|
import _consoleMaker from "./factory-components/consolemaker.svg";
|
||||||
default as _bearMaker,
|
import _circuitBoardMaker from "./factory-components/circuitmaker.svg";
|
||||||
default as _circuitBoardMaker,
|
|
||||||
default as _consoleMaker,
|
|
||||||
default as _stuffingMaker
|
|
||||||
} from "./factory-components/bearmaker.svg";
|
|
||||||
import _block from "./factory-components/block.svg";
|
import _block from "./factory-components/block.svg";
|
||||||
import _blockMaker from "./factory-components/blockmaker.svg";
|
import _blockMaker from "./factory-components/blockmaker.svg";
|
||||||
import _bucket from "./factory-components/bucket.svg";
|
import _bucket from "./factory-components/bucket.svg";
|
||||||
|
@ -67,11 +63,10 @@ import _rotateLeft from "./factory-components/rotateLeft.svg";
|
||||||
import _rotateRight from "./factory-components/rotateRight.svg";
|
import _rotateRight from "./factory-components/rotateRight.svg";
|
||||||
import _plankMaker from "./factory-components/sawmill.svg";
|
import _plankMaker from "./factory-components/sawmill.svg";
|
||||||
import _shed from "./factory-components/shed.svg";
|
import _shed from "./factory-components/shed.svg";
|
||||||
import { default as _button, default as _shovel } from "./factory-components/shovel.svg";
|
import _button from "./factory-components/button.svg";
|
||||||
import {
|
import _shovel from "./factory-components/shovel.svg";
|
||||||
default as _buttonMaker,
|
import _shovelMaker from "./factory-components/shovelmaker.svg";
|
||||||
default as _shovelMaker
|
import _buttonMaker from "./factory-components/buttonmaker.svg";
|
||||||
} from "./factory-components/shovelmaker.svg";
|
|
||||||
import _thread from "./factory-components/thread.svg";
|
import _thread from "./factory-components/thread.svg";
|
||||||
import _threadMaker from "./factory-components/threadmaker.svg";
|
import _threadMaker from "./factory-components/threadmaker.svg";
|
||||||
import _truck from "./factory-components/truck.svg";
|
import _truck from "./factory-components/truck.svg";
|
||||||
|
@ -87,8 +82,8 @@ import trees from "./trees";
|
||||||
import workshop from "./workshop";
|
import workshop from "./workshop";
|
||||||
import paper from "./paper";
|
import paper from "./paper";
|
||||||
import metal from "./metal";
|
import metal from "./metal";
|
||||||
import dyes from "./dyes"
|
import dyes from "./dyes";
|
||||||
import plastic from "./plastic"
|
import plastic from "./plastic";
|
||||||
|
|
||||||
const id = "factory";
|
const id = "factory";
|
||||||
|
|
||||||
|
|
|
@ -135,10 +135,12 @@ export default defineComponent({
|
||||||
position: relative;
|
position: relative;
|
||||||
border: solid 4px;
|
border: solid 4px;
|
||||||
border-color: var(--outline);
|
border-color: var(--outline);
|
||||||
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.layer-tab > .tab-family-container:first-child {
|
.layer-tab > .tab-family-container:first-child {
|
||||||
margin: -4px -11px var(--feature-margin) -11px;
|
margin: -4px -11px var(--feature-margin) -11px;
|
||||||
|
padding-bottom: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.layer-tab > .tab-family-container:first-child:nth-last-child(3) {
|
.layer-tab > .tab-family-container:first-child:nth-last-child(3) {
|
||||||
|
|
Loading…
Reference in a new issue