diff options
author | VoeGalore <[email protected]> | 2022-04-30 00:18:53 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2022-04-30 08:18:53 +0300 |
commit | f81fded8a4dd51d649f6756576b0a231a845db15 (patch) | |
tree | 9d0294a039f7e6d8ac5cbb0fb9a6a086c4b3e4e8 /web | |
parent | dfed318481b6640a9fbe2b1335a4ee38d3254f6c (diff) |
fix video pixel-imperfection (#86)
* Update stream.css
fix video pixel-imperfection by taking out 1px worth of internal padding, which inadvertently causing video stream resolution to swell at default(native) resolution
* Update stream.css
Diffstat (limited to 'web')
-rw-r--r-- | web/share/css/kvm/stream.css | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/web/share/css/kvm/stream.css b/web/share/css/kvm/stream.css index 2a103b52..e9909e33 100644 --- a/web/share/css/kvm/stream.css +++ b/web/share/css/kvm/stream.css @@ -56,6 +56,7 @@ div#stream-box { position: relative; display: inline-block; border: var(--border-window-default-thin); + margin: -1px -1px -1px -1px; } div.stream-box-offline { -webkit-filter: grayscale(100%) brightness(75%) sepia(75%); |