More fixes since I re-merged to my fork :).

This commit is contained in:
Maverick
2015-06-11 20:23:50 +10:00
parent 9b1767dade
commit e3d8dfa457
2 changed files with 10 additions and 6 deletions

View File

@@ -200,8 +200,8 @@ table.total {
&:nth-child(1) {
padding: 0;
margin: 0;
max-width: 0;
width: 0;
max-width: 0 !important;
width: 0 !important;
color: transparent;
}
&:nth-child(3) {
@@ -215,12 +215,16 @@ table.total {
.smallPhone({
table tbody tr td {
padding: 0;
&:nth-child(6) {
padding: 0;
margin: 0;
max-width: 0;
width: 0;
max-width: 0 !important;
width: 0 !important;
color: transparent;
u { display: none; }
}
}
});

View File

@@ -4,7 +4,7 @@
// To overwrite, put the smallest devices at the bottom
.smallPhone(@rules) {
@media only screen and (max-width: 350px) {
@media only screen and (max-width: 400px) {
@rules();
}
}