From 82494b406536dcc12ff850009067c5f1b8b08289 Mon Sep 17 00:00:00 2001 From: Natalie Johnstone Date: Mon, 13 Nov 2023 12:48:47 -0600 Subject: [PATCH] adding border bottom to last link in top navigation on mobile --- scss/illinois-framework/_region.header.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scss/illinois-framework/_region.header.scss b/scss/illinois-framework/_region.header.scss index e643dbee..52b391c8 100644 --- a/scss/illinois-framework/_region.header.scss +++ b/scss/illinois-framework/_region.header.scss @@ -2,3 +2,10 @@ position: relative; z-index: 101; } +il-nav[compact] {//fix for last element in mobile menu not having a border if there is only the top level link + il-nav-link:last-child { + a { + border-bottom: 1px solid #c0c0c0; + } + } +}