Adds header component

This commit is contained in:
Sam Cheng Hung 2018-07-18 17:24:13 +08:00
commit 155ea281d8
5 changed files with 69 additions and 1 deletions

View file

@ -0,0 +1 @@
@import "header";

View file

@ -0,0 +1,36 @@
.header {
padding: 29px 12px 65px;
background-color: #FAB915;
color: #FFFFFF;
.title {
font-size: 18px;
font-weight: 400;
line-height: 1em;
color: #FFFFFF;
text-align: center;
+ .content {
margin-top: 23px;
}
}
.content {
text-align: center;
p {
margin: 0;
line-height: 1em;
font-size: 18px;
&.large {
font-size: 29px;
font-weight: 600;
}
+ p {
margin-top: 8px;
}
}
}
}

View file

@ -9,4 +9,5 @@
@import "mixins/mixins";
@import "views/views";
@import "directives/directives";
@import "components/components";
@import "shame";