mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-04 19:15:27 +00:00
f1d2b8cb75
- Sass set-up - md-list - md-theming (install)
32 lines
360 B
SCSS
Executable File
32 lines
360 B
SCSS
Executable File
/**
|
|
*
|
|
* Breadcrumb
|
|
*
|
|
**/
|
|
|
|
.breadcrumbs {
|
|
display: none;
|
|
@include medium {
|
|
display: block;
|
|
}
|
|
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.breadcrumbs p {
|
|
@include type--small;
|
|
padding-top: $lineHeight;
|
|
}
|
|
|
|
.breadcrumbs__link {
|
|
@include type--small;
|
|
color: black;
|
|
font-weight: 400;
|
|
padding-top: 0;
|
|
|
|
@include medium {
|
|
padding-top: 0;
|
|
}
|
|
}
|