Spaces:
Runtime error
Runtime error
File size: 580 Bytes
965f144 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | /* Additional custom styles beyond base.html inline styles */
/* Responsive sidebar collapse */
@media (max-width: 768px) {
.sidebar {
transform: translateX(-100%);
transition: transform .3s;
}
.sidebar.open {
transform: translateX(0);
}
.main {
margin-left: 0;
padding: 1rem;
}
}
/* Smooth Plotly resize on window resize */
.plotly-wrap .js-plotly-plot {
width: 100% !important;
}
/* Molecule SVG dark theme overrides */
.mol-svg svg text {
fill: #c8d4f0 !important;
}
.mol-svg svg line,
.mol-svg svg path {
stroke: #8899cc !important;
}
|