Metiers_du_patrimoine_theme/resources/css/components/nav.css
Antoine M 393c4c16bb
Some checks failed
continuous-integration/drone/push Build is failing
breadcrumb changes
2024-12-02 12:33:07 +01:00

32 lines
606 B
CSS

.breadcrumbs_navigation {
ol {
@apply w-full inline-flex;
white-space: normal;
li:before {
@apply block absolute;
}
li:not(:nth-child(1)) a {
@apply block ml-3;
}
@media screen and (max-width: 800px) {
li {
/* flex-grow: 1; */
@apply w-fit;
}
li:not(:nth-child(1)) a {
flex-grow: 1;
width: 100px !important;
max-width: calc(100% - 1rem);
word-wrap: break-word;
white-space: normal;
}
li:nth-child(1) {
flex-grow: 0;
}
}
}
}