mirror of
https://github.com/bakhirev/assayo.git
synced 2025-09-02 02:29:48 +00:00
39 lines
566 B
SCSS
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;
|
|
}
|
|
}
|