Skip to content

Commit

Permalink
Fixed #6313 - Simulator device theming
Browse files Browse the repository at this point in the history
  • Loading branch information
tsv2013 committed Dec 24, 2024
1 parent 86078d6 commit db6500c
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions packages/survey-creator-core/src/components/simulator.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
margin: 0 auto;
position: relative;
overflow: hidden;
border-radius: 32px;
border: 4px solid $background-dim;
background: $background;
box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.10), 0px 4px 16px 0px rgba(0, 0, 0, 0.05);
border-radius: var(--ctr-preview-device-corner-radius, 32px);
border: var(--ctr-preview-device-border-width, 4px) solid var(--ctr-preview-device-border-color, $background-dim);
background: var(--ctr-preview-device-background-color, $background);
box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.10), 0px 8px 16px 0px var(--ctr-preview-device-shadow-2-color, rgba(0, 0, 0, 0.05));
}

.svd-simulator-main {
Expand Down Expand Up @@ -74,5 +74,6 @@
}

.svd-simulator .sv-popup--overlay {
--sv-popup-overlay-height: 100%;;
--sv-popup-overlay-height: 100%;
;
}

0 comments on commit db6500c

Please sign in to comment.