21 lines
261 B
SCSS
21 lines
261 B
SCSS
@use '../styles/breakpoints';
|
|
|
|
.viewer {
|
|
@include breakpoints.greater-than('lg') {
|
|
min-height: 500px;
|
|
}
|
|
|
|
canvas {
|
|
cursor: move;
|
|
}
|
|
}
|
|
|
|
.actions i {
|
|
display: inline;
|
|
padding: 0.5em 0.5em;
|
|
&:hover {
|
|
color: #555;
|
|
cursor: pointer;
|
|
}
|
|
}
|