From de964eb64a2f7e70ff108fde6fa17223c8e91d7a Mon Sep 17 00:00:00 2001 From: Carlos V <76731844+cvc90@users.noreply.github.com> Date: Fri, 11 Aug 2023 02:27:16 +0200 Subject: [PATCH] Update pialert.css Added option for "Back Button" to hide it on small screens Added option for "Next Button" to hide it on small screens Added option for "Reload Button" to hide it on small screens Added option for "Full Screen Button" to hide it on small screens --- front/css/pialert.css | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/front/css/pialert.css b/front/css/pialert.css index f80c25e4..0f44a43a 100755 --- a/front/css/pialert.css +++ b/front/css/pialert.css @@ -906,4 +906,30 @@ height: 50px; { width:480px; -} \ No newline at end of file +} + +/*Hidden special button*/ + +@media (max-width: 464px) { + #back-button { + display: none; + } +} + +@media (max-width: 432px) { + #next-button { + display: none; + } +} + +@media (max-width: 400px) { + #reload-button { + display: none; + } +} + +@media (max-width: 365px) { + #fullscreen-button { + display: none; + } +}