mirror of
https://github.com/discourse/discourse.git
synced 2025-09-07 12:02:53 +08:00
UX: Dynamic margins on flexbox categories-and-latest
This commit is contained in:
parent
2097c60cc0
commit
6b466cd1b4
1 changed files with 9 additions and 1 deletions
|
@ -125,7 +125,15 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
div.column.categories {
|
div.column.categories {
|
||||||
margin-right: 2em;
|
@media all and (max-width : 600px) {
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
@media all and (min-width : 600px) {
|
||||||
|
margin-right: 1em;
|
||||||
|
}
|
||||||
|
@media all and (min-width : 700px) {
|
||||||
|
margin-right: 2em;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.discourse-tag {
|
.discourse-tag {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue