Commit ad4964a2 authored by Sindre Sorhus's avatar Sindre Sorhus

Don't break inside the app list links

Should fix #677
parent 21e4c47d
...@@ -143,6 +143,10 @@ header nav a:not(:last-child) { ...@@ -143,6 +143,10 @@ header nav a:not(:last-child) {
.applist li { .applist li {
white-space: nowrap; white-space: nowrap;
padding-bottom: 20px; padding-bottom: 20px;
}
.applist a {
position: relative; /* popover */
-webkit-column-break-inside: avoid; -webkit-column-break-inside: avoid;
-moz-column-break-inside: avoid; -moz-column-break-inside: avoid;
-ms-column-break-inside: avoid; -ms-column-break-inside: avoid;
...@@ -150,10 +154,6 @@ header nav a:not(:last-child) { ...@@ -150,10 +154,6 @@ header nav a:not(:last-child) {
column-break-inside: avoid; column-break-inside: avoid;
} }
.applist a {
position: relative; /* popover */
}
.applist .routing::after { .applist .routing::after {
content: 'R'; content: 'R';
position: relative; position: relative;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment