Skip to content

Commit

Permalink
css update
Browse files Browse the repository at this point in the history
  • Loading branch information
jmhauck committed Jan 17, 2024
1 parent d3e874d commit 3348ec7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions src/components/crowdsource-reporter/crowdsource-reporter.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@
}

.width-full {
width: 100%;
width: 100% !important;
}

.width-0 {
width: 0;
}

.height-full {
height: 100%;
height: 100% !important;
}

.height-0 {
Expand Down Expand Up @@ -63,3 +63,8 @@
.error-msg{
padding: 10px;
}

.collapsed-side-panel {
top: calc(100% - 55px);
height: 54px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ export class CrowdsourceReporter {
}
const themeClass = this.theme === "dark" ? "calcite-mode-dark" : "calcite-mode-light";
return (
<calcite-panel class={sidePanelClass + " " + themeClass}>
<calcite-panel class={sidePanelClass + " width-full " + themeClass}>
{this.mapView
? <calcite-flow>
{renderLists?.length > 0 && renderLists}
Expand Down

0 comments on commit 3348ec7

Please sign in to comment.