From 6b01a09471c8cc9b82d48d1ed23f8edd7603354c Mon Sep 17 00:00:00 2001 From: Timur Ismagilov Date: Fri, 4 Jun 2021 22:29:14 +0500 Subject: [PATCH] Limit prev/next links in size --- assets/default.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/default.css b/assets/default.css index 3b7d41d..4679850 100644 --- a/assets/default.css +++ b/assets/default.css @@ -176,7 +176,7 @@ figcaption { padding-bottom: .5rem; } .rc-entry__links, .rc-entry__msg { grid-column: 1 / span 2; } .rc-entry__author { font-style: italic; } -.prevnext__el { display: inline-block; min-width: 40%; padding: .5rem; margin-bottom: .25rem; text-decoration: none; border-radius: .25rem; } +.prevnext__el { display: inline-block; min-width: 40%; padding: .5rem; margin-bottom: .25rem; text-decoration: none; border-radius: .25rem; max-width: 49%; } .prevnext__prev { float: left; } .prevnext__next { float: right; text-align: right; }