mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-18 18:55:49 +00:00
31 lines
575 B
SCSS
31 lines
575 B
SCSS
/* Breadcrumbs -------------------------------------------------------------- */
|
|
|
|
.breadcrumbs-wrap {
|
|
position: relative;
|
|
z-index: 11;
|
|
padding: 0 2rem 2rem 2rem;
|
|
}
|
|
|
|
.interactive-block .breadcrumbs-wrap {
|
|
padding: 0;
|
|
}
|
|
|
|
.breadcrumb-item + .breadcrumb-item:before {
|
|
content: "\f105"; /* fontawesome angle-right */
|
|
font-family: FontAwesome;
|
|
padding-right: 5px;
|
|
}
|
|
.breadcrumbs-wrap .breadcrumb {
|
|
padding: 0;
|
|
margin-bottom: 0;
|
|
font-size: 0.833em;
|
|
}
|
|
.breadcrumb-item a {
|
|
color: $gray-200;
|
|
text-decoration: none;
|
|
|
|
&:hover {
|
|
color: $primary
|
|
}
|
|
}
|