Merge branch 'feature/breadcrumb' into development

This commit is contained in:
Andrea Matsunaga 2023-02-10 19:12:58 -03:00
commit 105961002d
2 changed files with 12 additions and 6 deletions

View File

@ -10,15 +10,13 @@
.container { .container {
padding: 0 40px 16px; padding: 0 40px 16px;
} }
.container .link, .container .link {
.container .term {
font-size: 14px; font-size: 14px;
line-height: 19px; line-height: 19px;
color: #929292; color: #929292;
padding: 2px 12px; padding: 2px 12px;
} }
.container .link:first-child, .container .link:first-child {
.container .term:first-child {
padding: 0; padding: 0;
margin-right: 12px; margin-right: 12px;
} }
@ -40,3 +38,7 @@
left: 0; left: 0;
transform: translateY(-50%); transform: translateY(-50%);
} }
.container .termArrow,
.container .term {
display: none;
}

View File

@ -2,8 +2,7 @@
// background: green; // background: green;
padding: 0 40px 16px; padding: 0 40px 16px;
.link, .link {
.term {
font-size: 14px; font-size: 14px;
line-height: 19px; line-height: 19px;
color: #929292; color: #929292;
@ -38,4 +37,9 @@
transform: translateY(-50%); transform: translateY(-50%);
} }
} }
.termArrow,
.term {
display: none;
}
} }