24 lines
274 B
SCSS
24 lines
274 B
SCSS
.container {
|
|
margin: 0;
|
|
|
|
.link,
|
|
.term {
|
|
color: $gray-500;
|
|
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-size: 14px;
|
|
line-height: 19px;
|
|
}
|
|
|
|
.homeLink {
|
|
&::before {
|
|
content: "Home";
|
|
}
|
|
|
|
.homeIcon {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|