mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 15:40:11 +01:00
* refactor: improve observable layout change sharing * feat: add safe delayed event of layout change * fix: replace change layout with safe change * fix: limit front card width to prevent map overflow before repaint
32 lines
528 B
SCSS
32 lines
528 B
SCSS
@import '../../../@theme/styles/themes';
|
|
|
|
@include nb-install-component() {
|
|
.flip-icon {
|
|
position: absolute;
|
|
right: 0.625rem;
|
|
top: 1rem;
|
|
@include nb-rtl(right, auto);
|
|
@include nb-rtl(left, 0.625rem);
|
|
cursor: pointer;
|
|
}
|
|
|
|
::ng-deep {
|
|
.front-container {
|
|
max-width: 100%;
|
|
}
|
|
|
|
.flipped {
|
|
.back-container {
|
|
.flip-icon {
|
|
transform: scaleX(-1);
|
|
}
|
|
}
|
|
|
|
.front-container {
|
|
.flip-icon {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|