Skip to content
Snippets Groups Projects
Commit 15ecf98b authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix responsive on smartphone

parent 7a1af175
No related branches found
No related tags found
No related merge requests found
......@@ -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">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment