mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 01:36:29 -05:00
77a60c6c48
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
21 lines
346 B
SCSS
21 lines
346 B
SCSS
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
.breadcrumb {
|
|
background-color: $breadcrumb-bg;
|
|
}
|
|
|
|
.breadcrumb-item {
|
|
+ .breadcrumb-item {
|
|
&::before {
|
|
color: $breadcrumb-divider-color;
|
|
}
|
|
}
|
|
|
|
&.active {
|
|
color: $breadcrumb-active-color;
|
|
}
|
|
}
|