42 lines
582 B
SCSS
42 lines
582 B
SCSS
|
.container {
|
||
|
// background: green;
|
||
|
padding: 0 40px 16px;
|
||
|
|
||
|
.link,
|
||
|
.term {
|
||
|
font-size: 14px;
|
||
|
line-height: 19px;
|
||
|
color: #929292;
|
||
|
|
||
|
padding: 2px 12px;
|
||
|
|
||
|
&:first-child {
|
||
|
padding: 0;
|
||
|
margin-right: 12px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.arrow {
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
.homeLink {
|
||
|
position: relative;
|
||
|
// background-color: yellow;
|
||
|
|
||
|
.homeIcon {
|
||
|
visibility: hidden;
|
||
|
width: 37.35px;
|
||
|
height: 19px;
|
||
|
}
|
||
|
|
||
|
&::after {
|
||
|
content: "Home";
|
||
|
position: absolute;
|
||
|
top: 50%;
|
||
|
left: 0;
|
||
|
transform: translateY(-50%);
|
||
|
}
|
||
|
}
|
||
|
}
|