1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-06-17 18:03:22 +02:00
portfolio/src/components/organisms/Header.module.scss

21 lines
381 B
SCSS

@import 'variables';
.header {
position: relative;
padding: $spacer;
padding-top: 30vh;
min-height: calc(100vh - #{$spacer});
max-height: 1000px;
text-align: center;
display: flex;
flex-direction: column;
justify-content: flex-start;
}
.minimal {
composes: header;
min-height: 0;
padding-top: $spacer * 2;
padding-bottom: 0;
}