From e782358050885c28eee470ef81e83f24aa8b16d7 Mon Sep 17 00:00:00 2001 From: danielmoliaribarbosa Date: Fri, 10 Feb 2023 15:45:42 -0300 Subject: [PATCH] feat(breadcrumb): Implementa SASS do block breadcrumb --- .../sass/pages/product/vtex.breadcrumb.scss | 60 +++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 styles/sass/pages/product/vtex.breadcrumb.scss diff --git a/styles/sass/pages/product/vtex.breadcrumb.scss b/styles/sass/pages/product/vtex.breadcrumb.scss new file mode 100644 index 0000000..d92621e --- /dev/null +++ b/styles/sass/pages/product/vtex.breadcrumb.scss @@ -0,0 +1,60 @@ +.container { + .homeLink { + .homeIcon { + display: none; + } + + padding: 0; + } + + .homeLink::before { + content: "Home"; + font-family: 'Open Sans'; + font-style: normal; + font-weight: 400; + font-size: 14px; + line-height: 19px; + color: #929292; + } + + .arrow--1 { + .link { + font-size: 0; + } + + .link::before { + content: "Sapatos"; + font-family: 'Open Sans'; + font-style: normal; + font-weight: 400; + font-size: 14px; + line-height: 19px; + color: #929292; + } + } + + .arrow--2 { + .link { + font-size: 0; + } + + .link::before { + content: "Sandálias"; + font-family: 'Open Sans'; + font-style: normal; + font-weight: 400; + font-size: 14px; + line-height: 19px; + color: #929292; + } + } + + .term { + font-family: 'Open Sans'; + font-style: normal; + font-weight: 400; + font-size: 14px; + line-height: 19px; + color: #929292; + } +}