From 64d2d78137ef966d4f27d47c374a16e863bf6d1b Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Wed, 6 Sep 2023 13:59:12 +0200 Subject: [PATCH] #11014 fixed responsive user QR code --- pandora_console/include/styles/pandora.css | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index d87d959ac5..a1821011d7 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -12566,3 +12566,31 @@ tr[id^="network_component-plugin-snmp-fields-dynamicMacroRow-"] input { .ui-date-range-in > a { background-color: #81b92e3b !important; } + +@media screen and (min-width: 1190px) and (max-width: 1290px) { + #api_qrcode_display { + left: 580px; + } +} + +@media screen and (min-width: 1143px) and (max-width: 1189px) { + #api_qrcode_display { + left: 528px; + } +} + +@media screen and (min-width: 860px) and (max-width: 1142px) { + #api_qrcode_display { + left: 356px; + top: 120px; + } + + .font-title-font { + line-height: 0; + } + + #qr_code_agent_view > img { + width: 250px; + height: 250px; + } +}