Add basic breadcrumb style

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

View File

@ -564,6 +564,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
// ---