diff options
author | ADRN <adrien@luxeylab.net> | 2024-12-08 15:16:03 +0100 |
---|---|---|
committer | Marion <marionz@deuxfleurs.fr> | 2024-12-08 17:34:59 +0100 |
commit | 953a3593f90377a806b05407834aa3056a85dc0e (patch) | |
tree | 89e3515bacdf110c61bab69b97eff2be058c9be6 /sass/juice.scss | |
parent | 322457d8e58c3dffe9f42931deebfd87be779d87 (diff) | |
download | guide.deuxfleurs.fr-953a3593f90377a806b05407834aa3056a85dc0e.tar.gz guide.deuxfleurs.fr-953a3593f90377a806b05407834aa3056a85dc0e.zip |
feat(nav): soulignage de la section active dans la topbar
Diffstat (limited to 'sass/juice.scss')
-rw-r--r-- | sass/juice.scss | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sass/juice.scss b/sass/juice.scss index 9770ed6..0c2afe3 100644 --- a/sass/juice.scss +++ b/sass/juice.scss @@ -77,12 +77,17 @@ header ul li { } header .nav-item { - padding: 4px 2px; + padding: 8px 6px; + margin: 0 10px; color: var(--primary-text-color); &:hover, &:active, &:focus { text-decoration: none; - border-bottom: white solid 2px; + border-bottom: white solid 1px; + } + &.active { + text-decoration: none; + border-bottom: white solid 3px; } } |