If we launch kiwiirc on a small device then fill the screen

This commit is contained in:
Andy Williams 2017-07-15 11:04:27 +01:00
parent 150e77b0ce
commit f915039719
1 changed files with 19 additions and 0 deletions

View File

@ -706,3 +706,22 @@ table {
width: 60px;
height: 60px;
}
@media screen and (max-width: 768px) {
/* If we are trying to launch kiwi-irc on mobile use the whole window... */
#ircbubble {
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
z-index: 100;
}
#ircbubble iframe {
width: 100% !important;
height: 100% !important;
}
}