From 95f61333f6fefe57f20b7fd6f7fdf7d3d916d25c Mon Sep 17 00:00:00 2001 From: Alice Gaudon Date: Thu, 30 Jul 2020 10:54:29 +0200 Subject: [PATCH] Add basic breadcrumb style --- assets/sass/layout.scss | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/assets/sass/layout.scss b/assets/sass/layout.scss index a4091db..1ae1210 100644 --- a/assets/sass/layout.scss +++ b/assets/sass/layout.scss @@ -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 // ---