Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PR] Building Popup Restyle Margins #244

Merged
merged 2 commits into from
Sep 2, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/components/map/sideView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ export default {
display: block;
position: absolute;
left: 100%;
bottom: 8%;
bottom: 0%;
width: 900px !important; // hard-coded value, might not be correct
margin-left: -930px; // hard-coded value, might not be correct
height: 85% !important;
Expand All @@ -281,7 +281,7 @@ export default {
overflow: hidden;
background-color: rgb(26, 26, 26);
box-shadow: -1px 1px 6px rgba(0, 0, 0, 0.6);
height: 378px; // hard-coded value, might not be correct
height: 390px; // hard-coded value, might not be correct
}
.title {
padding: 0.3em;
Expand Down Expand Up @@ -323,7 +323,7 @@ export default {
width: 450px;
margin-left: 450px;
position: absolute;
top: 50px; // hard-coded value, might not be correct
top: 55px; // hard-coded value, might not be correct
}
.rangeButtonParent {
padding: 0.2em;
Expand Down
Loading