From 999cb8845b9492b2c6a2dcdb2af0635ed2562493 Mon Sep 17 00:00:00 2001 From: Devon Campbell Date: Tue, 6 Dec 2022 21:03:19 -0800 Subject: [PATCH] Fix nav margins I don't want the first nav item to have a left margin, but I do want it to have a right margin. --- assets/css/theme.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/css/theme.css b/assets/css/theme.css index 0f0984c..bce8ddb 100644 --- a/assets/css/theme.css +++ b/assets/css/theme.css @@ -88,7 +88,7 @@ body > nav li { white-space: nowrap; } body > nav li:first-of-type { - margin: 0; + margin: 0 1rem 0 0; } body > nav a { transition: 0.2s;