Add basic breadcrumb style

This commit is contained in:
Alice Gaudon 2020-07-30 10:54:29 +02:00
parent 5eb8fa1f1e
commit a6d9c22789
1 changed files with 13 additions and 0 deletions

View File

@ -568,6 +568,19 @@ button, .button {
}
}
.breadcrumb {
list-style: none;
display: flex;
flex-direction: row;
margin: 0;
padding: 8px;
> *:not(:first-child)::before {
content: '';
padding: 0 8px;
}
}
// ---
// --- Layout helpers
// ---