1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-01 18:19:25 +00:00

Added mainPageHeader component

This commit is contained in:
2022-01-31 15:06:40 +00:00
parent a28862c9f1
commit 5528445731
3 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
.mainPageHeader {
background-color: $primary-colour;
padding: 2rem 0;
color: white;
font-size: 1.5em;
text-align: center;
font-weight: bold;
font-size: 3rem;
@include respond-to('medium') {
padding: 4rem 0;
}
}

View File

@@ -12,5 +12,6 @@
@import 'components/testimonial';
@import 'components/title';
@import 'components/form';
@import 'components/mainPageHeader';
@import 'pages/index';

View File

@@ -0,0 +1,3 @@
<section class='mainPageHeader'>
{{ name }}
</section>