assayo/src/ts/components/DataView/index.module.scss
Бахирев 82cb9a1cb6 update
2024-06-08 00:21:19 +03:00

39 lines
566 B
SCSS

@import 'src/styles/variables';
.data_view {
&_buttons {
position: absolute;
top: -48px;
right: 24px;
text-align: right;
}
&_icon {
display: inline-block;
width: var(--space-xxl);
height: var(--space-xxl);
padding: 0;
margin-left: var(--space-l);
cursor: pointer;
}
&_full_screen {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1;
padding: var(--space-xxl);
margin: 0;
border-radius: 0;
}
}
@media print {
.data_view_buttons {
display: none;
}
}