diff --git a/components/module-header/template.php b/components/module-header/template.php index 16faa25..bf92627 100644 --- a/components/module-header/template.php +++ b/components/module-header/template.php @@ -17,11 +17,7 @@
-

- - - -

+

diff --git a/modules/invise-example-module/style.scss b/modules/invise-example-module/style.scss index b2faea6..1955394 100644 --- a/modules/invise-example-module/style.scss +++ b/modules/invise-example-module/style.scss @@ -8,4 +8,28 @@ grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: var(--spacing-large); } + + article { + display: flex; + flex-direction: column; + padding: var(--spacing-medium); + box-shadow: var(--shadow-small); + border-radius: 0.25rem; + + > * { + width: 100%; + } + + > figure { + margin: calc(var(--spacing-medium) * -1); + margin-bottom: var(--spacing-medium); + border-radius: 0.25rem 0.25rem 0 0; + width: calc(100% + var(--spacing-medium) * 2); + overflow: hidden; + } + + > .links { + margin-top: auto; + } + } } \ No newline at end of file diff --git a/src/sass/components/text.scss b/src/sass/components/text.scss index 027540b..4c1f8c0 100644 --- a/src/sass/components/text.scss +++ b/src/sass/components/text.scss @@ -8,4 +8,10 @@ .text--right { text-align: right; +} + +.text--kicker { + margin: 0; + text-transform: uppercase; + font-weight: bold; } \ No newline at end of file