Skip to content
Snippets Groups Projects
Commit c13c1749 authored by shamalainen's avatar shamalainen
Browse files

Align sidebar element with main element

parent cb3ab163
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,7 @@
font-weight: bold;
letter-spacing: -0.5px;
line-height: 24px;
margin: 0;
padding-bottom: 19px;
text-transform: uppercase;
......
......@@ -47,7 +47,7 @@ export class HyLinkList implements ComponentInterface {
return [
<div class={classAttributes}>
{this.listHeading.length > 0 && <div class={'list-title'}>{this.listHeading}</div>}
{this.listHeading.length > 0 && <h3 class={'list-title'}>{this.listHeading}</h3>}
{this._dataItems.map((x) => {
return (
<hy-cta-link
......
......@@ -100,5 +100,17 @@
padding: 0;
}
}
hy-link-list {
margin-top: 24px;
@include breakpoint($narrow) {
margin-top: 28px;
}
@include breakpoint($wide) {
margin-top: 32px;
}
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment