diff options
| author | Max | 2019-02-28 16:58:53 +0100 |
|---|---|---|
| committer | Max | 2019-02-28 16:58:53 +0100 |
| commit | b54bc0d070ca21a1ec9c8a46da08ec3fb88a7bb8 (patch) | |
| tree | 1dcd7a704a55fd275282cebfde9fdf00afd67a6e /sass | |
| parent | 3f9fb375292cc0ea3aaff30503edb0a46a67fabc (diff) | |
| download | fuselkoenig_de-b54bc0d070ca21a1ec9c8a46da08ec3fb88a7bb8.tar.gz | |
Adds support for breadcrumbs navigation.
Diffstat (limited to 'sass')
| -rw-r--r-- | sass/theme.scss | 1 | ||||
| -rw-r--r-- | sass/theme/_breadcrumbs.scss | 16 | ||||
| -rw-r--r-- | sass/theme/_offer.scss | 2 |
3 files changed, 18 insertions, 1 deletions
diff --git a/sass/theme.scss b/sass/theme.scss index 27d7d23..44d168b 100644 --- a/sass/theme.scss +++ b/sass/theme.scss @@ -25,3 +25,4 @@ @import "theme/contact-form7"; // Contact Form 7 - Bootstrap 4 support @import "theme/theme"; // <--------- That's where you can add your own design. Thats your part! @import "theme/offer"; // <--------- That's where you can add your own design. Thats your part! +@import "theme/breadcrumbs"; // <--------- That's where you can add your own design. Thats your part! diff --git a/sass/theme/_breadcrumbs.scss b/sass/theme/_breadcrumbs.scss new file mode 100644 index 0000000..140f719 --- /dev/null +++ b/sass/theme/_breadcrumbs.scss @@ -0,0 +1,16 @@ +.breadcrumb-item { + font-size: 17px; +} + +.breadcrumb { + background-color: inherit; + padding-left: 0; + align-items: left; + border-radius: inherit; +} + +@media( max-width: 768px ) { + .breadcrumb-item.current-item { + display: none; + } +} diff --git a/sass/theme/_offer.scss b/sass/theme/_offer.scss index 6f94d2d..e378637 100644 --- a/sass/theme/_offer.scss +++ b/sass/theme/_offer.scss @@ -48,7 +48,7 @@ margin-top: 20px !important; } } -@media (max-width: 767px) { +@media (max-width: 768px) { .card-header-dp-none { display: none !important; } |
