Skip to content
Snippets Groups Projects
Commit ac2389a0 authored by Paulus Schoutsen's avatar Paulus Schoutsen
Browse files

Responsive design now supports up to 4 columns

parent 714f747b
No related branches found
No related tags found
No related merge requests found
...@@ -19,14 +19,21 @@ ...@@ -19,14 +19,21 @@
} }
state-card { state-card {
width: calc(50% - 42px); width: calc(50% - 44px);
margin: 8px 0 0 8px; margin: 8px 0 0 8px;
} }
} }
@media all and (min-width: 1100px) { @media all and (min-width: 1100px) {
state-card { state-card {
width: calc(33% - 37px); width: calc(33% - 38px);
}
}
@media all and (min-width: 1450px) {
state-card {
width: calc(25% - 42px);
} }
} }
......
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