Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 25 additions & 2 deletions vis/stylesheets/modules/_footer.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
.builtwith {
margin: 15px 10px 15px 50px;
font-size: 12px;
// TODO this doesn't work on mobile (footer is unreadable)
height: 20px;
}

Expand All @@ -15,7 +14,31 @@
}
}

@media screen and (max-width: 640px) {
@media screen and (max-width: 1210px) {
.builtwith {
font-size: 11px;
}
}

@media screen and (max-width: 1120px) {
.builtwith {
font-size: 10px;
}
}

@media screen and (max-width: 1030px) {
.builtwith {
font-size: 9px;
}
}

@media screen and (max-width: 1000px) {
.builtwith {
font-size: 10px;
}
}

@media screen and (max-width: 900px) {
.builtwith {
margin: 10px 0px 10px 20px;
font-size: 11px;
Expand Down