From 266a37a34a4d64d7ff7bb107c19f27261dc6b374 Mon Sep 17 00:00:00 2001 From: Dan Allen Date: Wed, 17 Jul 2019 19:37:23 -0600 Subject: [PATCH] add border radius to bottom of navbar dropdown --- src/css/header.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/css/header.css b/src/css/header.css index 61a90dc..8c19082 100644 --- a/src/css/header.css +++ b/src/css/header.css @@ -239,6 +239,8 @@ body { .navbar-dropdown { background-color: var(--navbar-menu-background); border: 1px solid var(--navbar-menu-border-color); + border-top: none; + border-radius: 0 0 0.25rem 0.25rem; display: none; top: 100%; left: 0; @@ -251,6 +253,10 @@ body { white-space: nowrap; } + .navbar-dropdown .navbar-item:last-child { + border-radius: inherit; + } + .navbar-dropdown a.navbar-item { padding-right: 3rem; } -- 2.11.0