Make the Minari calendar display well on small devices

This commit is contained in:
Gergely Polonkai 2020-01-15 12:55:19 +01:00
parent 9de9dc9fbe
commit 1249112ef2
No known key found for this signature in database
GPG Key ID: 38F402C8471DDE93
1 changed files with 4 additions and 1 deletions

View File

@ -323,7 +323,10 @@ function setYear(newYear) {
}
function genMonthTable(div) {
var month_table = $('<table>').addClass('month');
var month_table = $('<table>')
.addClass('month')
.addClass('col-xs-12')
.addClass('col-lg-3');
var month_header = $('<thead>');
month_num = $(div).attr('data-month');