Files
Bjorn/web/css/pages/bjorn.css
infinition aac77a3e76 Add Loki and Sentinel utility classes for web API endpoints
- Implemented LokiUtils class with GET and POST endpoints for managing scripts, jobs, and payloads.
- Added SentinelUtils class with GET and POST endpoints for managing events, rules, devices, and notifications.
- Both classes include error handling and JSON response formatting.
2026-03-14 22:33:10 +01:00

34 lines
747 B
CSS

/* ==========================================================================
BJORN
========================================================================== */
.bjorn-container .image-container {
display: flex;
justify-content: center;
align-items: center;
height: calc(100vh - 70px);
}
.bjorn-container .image-container img {
max-height: 100%;
max-width: 100%;
height: -webkit-fill-available;
cursor: pointer;
transition: transform 0.2s ease-in-out;
}
.bjorn-container .image-container img:active {
transform: scale(1.05);
}
.bjorn-container .image-container.fullscreen img {
height: 100vh;
width: auto;
}
@media (max-width:768px) {
.bjorn-container .image-container {
height: calc(100vh - 60px);
}
}