Move .less files to dev/less

This commit is contained in:
Nishanth Shanmugham
2016-07-30 20:52:45 -07:00
parent e32b495b66
commit 7acfda9584
5 changed files with 0 additions and 10 deletions

24
dev/less/util.less Normal file
View File

@@ -0,0 +1,24 @@
.dark {
color: @black !important;
}
.light {
color: @gray !important;
}
.accent {
color: @accent !important;
}
.small-screens-only {
@media (min-width: 550px) {
display: none;
}
}
.large-screens-only {
display: none;
@media (min-width: 550px) {
display: initial;
}
}