Fix responsive on smartphone

This commit is contained in:
Laurent Destailleur 2016-03-05 02:11:20 +01:00
parent 7a1af17585
commit 15ecf98bcb

View File

@ -273,7 +273,14 @@ background: -webkit-linear-gradient(bottom, rgb(255,255,255) 85%, rgb(255,255,25
column-count: 2;
}
}
@media only screen and (max-width: 420px)
{
.csscolumns {
-webkit-column-count: 1; /* Chrome, Safari, Opera */
-moz-column-count: 1; /* Firefox */
column-count: 1;
}
}
</style>
<script type="text/javascript">