| 123456789101112131415161718192021222324252627282930313233 |
- @import "~react-grid-layout/css/styles.css";
- @import "~react-resizable/css/styles.css";
- .panel-in-fullscreen {
- .react-grid-layout {
- height: 100% !important;
- }
- .react-grid-item {
- display: none;
- transition-property: none !important;
- }
- .panel--fullscreen {
- display: block !important;
- position: unset !important;
- width: 100% !important;
- height: 100% !important;
- transform: translate(0px, 0px) !important;
- }
- }
- .react-grid-item {
- overflow: hidden;
- }
- .theme-dark {
- .react-grid-item > .react-resizable-handle {
- background-image: url('../img/resize-handle-white.svg');
- }
- }
|