Skip to content
Snippets Groups Projects
Commit 9587a54a authored by Tuukka Turu's avatar Tuukka Turu
Browse files

Merge branch 'development'

parents b679dfe8 d281b723
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@
display: flex;
flex-direction: column-reverse;
max-height: 100%;
padding: 32px 24px 32px 24px;
padding: 32px 16px 32px 16px;
place-content: center space-between;
position: relative;
width: 100%;
......
......@@ -91,7 +91,13 @@ export class HyFooterBase implements ComponentInterface {
{some &&
some.map((s) => {
return (
<a href={s.url} class={`hy-footer-base__some__item`} title={s.label} aria-label={s.label}>
<a
aria-label={s.label}
href={s.url}
class={`hy-footer-base__some__item`}
title={s.label}
target="_blank"
>
<hy-icon icon={`hy-icon-some-${s.type}`} size={36} />
</a>
);
......
......@@ -6,7 +6,7 @@
display: flex;
flex-direction: column;
max-height: auto;
padding: 0 24px 40px 24px;
padding: 0 16px 40px 16px;
place-content: center space-between;
@include breakpoint($medium) {
......@@ -79,4 +79,8 @@
width: 65.56%;
}
}
.hy-accordion__content--inner-wrapper {
width: 100%;
}
}
......@@ -15,7 +15,7 @@ hy-footer-link-item {
flex-direction: column;
.hy-footer-link-item:last-child {
margin-bottom: 14px;
margin-bottom: 16px;
}
}
......@@ -44,6 +44,10 @@ hy-footer-link-item {
padding: 15px 20px 15px 0;
}
@include breakpoint($overwide) {
margin-left: 48px;
}
&__color-white {
border-bottom: 1px solid var(--grayscale-white);
color: var(--grayscale-white);
......@@ -74,6 +78,7 @@ hy-footer-link-item {
color: var(--grayscale-nearly-black);
font-family: var(--main-font-family);
text-decoration: none;
margin-bottom: 12px;
}
}
}
......
......@@ -153,6 +153,12 @@
}
}
.breadcrumb-item-caret {
svg {
fill: var(--grayscale-dark);
}
}
.breadcrumb-item-dropdown-button {
display: flex;
flex-direction: row;
......@@ -163,7 +169,7 @@
line-height: 10px;
border-radius: 3px;
background-color: var(--grayscale-white);
box-shadow: 0 0 10px 0 rgba(14, 104, 139, 0.1);
box-shadow: 0 0 10px 0 rgba(14, 104, 139, 0.3);
padding: 0 25px 9px 10px;
position: relative;
......@@ -193,7 +199,7 @@
&__is-open {
background: var(--grayscale-white);
box-shadow: 0 0 10px 0 rgba(14, 104, 139, 0.1);
box-shadow: 0 0 10px 0 rgba(14, 104, 139, 0.2);
display: block;
margin-top: -9px;
padding: 32px 16px 6px 16px;
......@@ -242,6 +248,19 @@
visibility: hidden;
}
.breadcrumb-item.main,
.breadcrumb-item.intermediate,
.breadcrumb-item.home {
a {
min-height: 44px;
}
}
.breadcrumb-item.breadcrumb-item__current {
a {
min-height: 0;
}
}
#more,
.more {
display: none;
......@@ -263,13 +282,11 @@
@include font-size(26px, 26px);
color: var(--grayscale-black);
font-weight: 700;
}
//@todo change home icon to be 20px x 20px and be as in the specs
.breadcrumb-item-caret {
// @todo set styles for caret near the home icon
// should be bold
// padding: 0 6px 0 8px; (mobile) && padding: 0 8px 0 10px (tablet + desktop);
.breadcrumb-item-caret {
svg {
fill: var(--grayscale-black);
}
}
......
.hy-main {
display: flex;
margin: var(--gutter-mobile) auto;
//margin: var(--gutter-mobile) auto;
max-width: $fullhd;
padding: 0;
width: 100%;
......
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