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
This commit is contained in:
Carlos V
2023-08-11 02:27:16 +02:00
committed by GitHub
parent 75c4b50d96
commit de964eb64a

View File

@@ -906,4 +906,30 @@ height: 50px;
{
width:480px;
}
}
/*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;
}
}