2017-03-02 20:01:33 +00:00
|
|
|
.preview-frame {
|
|
|
|
min-height: 100%;
|
|
|
|
min-width: 100%;
|
|
|
|
position: absolute;
|
2018-07-30 16:20:57 +00:00
|
|
|
border-width: 0;
|
2017-03-02 20:01:33 +00:00
|
|
|
}
|
|
|
|
|
2018-10-22 18:59:08 +00:00
|
|
|
.preview-frame--full-view {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2018-09-08 18:50:39 +00:00
|
|
|
.preview-frame-holder {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2017-03-02 20:01:33 +00:00
|
|
|
|
|
|
|
.preview-frame-overlay {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 10;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.preview-frame__header {
|
|
|
|
height: #{29 / $base-font-size}rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.preview-frame__title {
|
|
|
|
@include themify() {
|
|
|
|
color: getThemifyVariable('secondary-text-color');
|
|
|
|
}
|
|
|
|
height: #{29 / $base-font-size}rem;
|
|
|
|
padding-top: #{7 / $base-font-size}rem;
|
|
|
|
padding-left: #{5 / $base-font-size}rem;
|
|
|
|
font-size: #{12 / $base-font-size}rem;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
2018-09-08 18:50:39 +00:00
|
|
|
|
|
|
|
.preview-frame__content {
|
|
|
|
position: relative;
|
|
|
|
flex: 1 1 0;
|
2018-10-18 18:10:37 +00:00
|
|
|
}
|