Remove border on when there is one item only

This commit is contained in:
Corinne Durrmeyer 2024-06-20 09:46:30 +02:00
parent d8f7269f70
commit f12f7c15e5
No known key found for this signature in database
GPG key ID: DDC049DDA35585B6

View file

@ -20,4 +20,9 @@
margin-left: 0;
margin-right: 0;
}
// Remove border on when there is one item only
.fr-nav__item:only-child::before {
box-shadow: none;
}
}