Add map and description to location step with layout adjustments
This commit is contained in:
parent
d7a97dfb1d
commit
096c534536
17 changed files with 181 additions and 199 deletions
|
@ -1,10 +1,17 @@
|
|||
@import "./theme.scss";
|
||||
@import "./header.scss";
|
||||
@import "./map.scss";
|
||||
@import "./step.scss";
|
||||
|
||||
// Global styles here...
|
||||
html, body, #root, .App {
|
||||
html, body, #root, .App, .main-container {
|
||||
height: 100%;
|
||||
font-family: $primary-font;
|
||||
color: $text-color-primary;
|
||||
background-color: $background-color-primary;
|
||||
}
|
||||
|
||||
.main-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
|
4
frontend/src/assets/styles/map.scss
Normal file
4
frontend/src/assets/styles/map.scss
Normal file
|
@ -0,0 +1,4 @@
|
|||
.map-container, .leaflet-container {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
10
frontend/src/assets/styles/step.scss
Normal file
10
frontend/src/assets/styles/step.scss
Normal file
|
@ -0,0 +1,10 @@
|
|||
.step-container {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.step-overlay {
|
||||
background-color: #191919c2;
|
||||
height: 100%;
|
||||
padding-left: 3vw;
|
||||
padding-right: 3vw;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue