mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-02-03 20:59:09 +00:00
Switch to using flexbox for the community links
Not sure whether it’s really better, but it does mean that the number of horizontal boxes increases as you remove the sidebar.
This commit is contained in:
parent
85952e6f59
commit
7916553b99
@ -4,16 +4,18 @@ tags: $:/tags/stylesheet
|
||||
@media (min-width: 600px) {
|
||||
|
||||
.tw-link-info {
|
||||
-moz-column-count: 2;
|
||||
-moz-column-gap: 10px;
|
||||
-webkit-column-count: 2;
|
||||
-webkit-column-gap: 10px;
|
||||
column-count: 2;
|
||||
column-gap: 10px;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
|
||||
-webkit-flex-wrap: wrap;
|
||||
-ms-flex-wrap: wrap;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.tw-link-info-item {
|
||||
width: 100%;
|
||||
max-width: 25em;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user