Cleaning technical debt (#192)

* abstract Space component to switch out Map

* basic viewing possible

* restructure components dir

* all jsx --> js

* App.jsx --> App.js

* comment out 3d for now
This commit is contained in:
Lachlan Kermode
2021-01-19 22:22:12 +01:00
committed by GitHub
parent 745953a435
commit e99398ceab
75 changed files with 121 additions and 745 deletions

View File

@@ -12,4 +12,4 @@
@import "notification";
@import "mediaplayer";
@import "cover";
@import "stateoptions";
@import "search";

View File

@@ -1,28 +0,0 @@
.stateoptions-panel {
position: absolute;
right: 0;
box-sizing: border-box;
margin: 1px 0 0 0;
padding: 15px;
border: 1px solid $black;
transition: 0.2 ease;
background: $midwhite;
color: $darkgrey;
box-shadow: 0 19px 19px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
font-size: $large;
line-height: $xxlarge;
height: auto;
opacity: 0.9;
transition: background-color 0.4s;
.button {
border: 1px solid black;
padding: 0.3em;
transition: all 0.3s ease;
&:hover {
background-color: black;
color: white;
cursor: pointer;
}
}
}