mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 04:20:12 +02:00
f0d22267c3
- react-resizable-panels was causing an issue with browser navigation
37 lines
571 B
CSS
37 lines
571 B
CSS
.container {
|
|
position: relative;
|
|
z-index: 50;
|
|
width: 100%;
|
|
height: 100%;
|
|
max-height: 100%;
|
|
margin: auto;
|
|
overflow: hidden;
|
|
|
|
canvas {
|
|
width: 100%;
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
margin: auto;
|
|
}
|
|
|
|
&:hover {
|
|
.settings-icon {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
.container .settings-icon {
|
|
z-index: 100;
|
|
opacity: 0;
|
|
transition: opacity 0.2s ease-in-out;
|
|
}
|
|
|
|
.visualizer {
|
|
width: 100%;
|
|
height: 100%;
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
overflow: hidden;
|
|
}
|