Files
copenlight/styles/_page_header.scss
Ivan Carlos de Almeida 6fa41a771d
Some checks failed
Build, Push, Publish / Build & Release (push) Failing after 2s
Sync Repo / sync (push) Failing after 2s
first load
2025-12-16 04:40:00 -03:00

49 lines
825 B
SCSS

// Component made for elements that are separated with space between
.page-header {
@include tablet {
align-items: baseline;
flex-direction: row;
flex-wrap: wrap;
gap: 16px;
margin: 0;
}
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: space-between;
margin: 10px 0;
.section-subscribe {
@include tablet {
margin-bottom: 0;
}
flex-shrink: 0; //Avoid collapsing elements in Safari
margin-bottom: 10px;
}
h1 {
flex-grow: 1;
margin-bottom: 10px;
}
&-description {
@include desktop {
flex-basis: 100%;
}
font-style: italic;
margin: 0 0 30px 0;
word-break: break-word;
}
.icon-lock {
height: 20px;
width: 20px;
position: relative;
left: -5px;
vertical-align: baseline;
}
}