diff options
| author | horus | 2022-01-07 19:00:05 +0100 |
|---|---|---|
| committer | horus | 2022-01-07 19:00:05 +0100 |
| commit | 5941cb809691987e80beb82a36dedecba4c1f6be (patch) | |
| tree | d86cef15d2e81d362fad33a2e8189425f51f6ba0 /resources/views/layouts | |
| parent | 88a76b9a2352d46a52e1fc0e8a87b5f5f91a298b (diff) | |
| download | kategorischeraperitif-5941cb809691987e80beb82a36dedecba4c1f6be.tar.gz | |
Bottom border color in navbar.
Diffstat (limited to 'resources/views/layouts')
| -rw-r--r-- | resources/views/layouts/base.blade.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/resources/views/layouts/base.blade.php b/resources/views/layouts/base.blade.php index f1bc1f8..f51d2fa 100644 --- a/resources/views/layouts/base.blade.php +++ b/resources/views/layouts/base.blade.php @@ -43,6 +43,32 @@ margin-left: -10px; } } + /** + * ## Bottom Border Color in Navbar + */ + @media (min-width: 993px) { + .navbar-nav > li { + position: relative; + } + .navbar-nav .active a:not(.dropdown-item)::before{ + border-bottom: 5px solid #f07206; + bottom: -18px; + content: " "; + left: 0; + position: absolute; + right: 0; + } + } + @media (max-width: 992px) { + #main-menu > li.active { + text-decoration: underline !important; + /* + text-decoration-color: theme-color(primary); + text-decoration: none !important; + border-bottom: 2px solid theme-color(primary); + */ + } + } </style> |
