Skip to content

Commit 9e72254

Browse files
committed
fixed h3 and h4 order in sample
1 parent d7be81c commit 9e72254

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

stories/components/get.stories.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ export const GetEmail = () => html`
1818
<mgt-get resource="/me/messages" version="beta" scopes="mail.read" max-pages="2">
1919
<template>
2020
<div class="email" data-for="email in value">
21+
<h3>{{ email.subject }}</h3>
2122
<h4>
2223
<mgt-person
2324
person-query="{{email.sender.emailAddress.address}}"
2425
view="oneline"
2526
person-card="hover"
2627
></mgt-person>
2728
</h4>
28-
<h3>{{ email.subject }}</h3>
2929
<div data-if="email.bodyPreview" class="preview" innerHtml>{{email.bodyPreview}}</div>
3030
<div data-else class="preview">
3131
email body is empty
@@ -56,13 +56,13 @@ export const GetEmail = () => html`
5656
5757
.email h3 {
5858
font-size: 12px;
59-
margin-top: 4px;
59+
margin-bottom: 4px;
6060
}
6161
6262
.email h4 {
6363
font-size: 10px;
6464
margin-top: 0px;
65-
margin-bottom: 0px;
65+
margin-bottom: 4px;
6666
}
6767
6868
.email mgt-person {

0 commit comments

Comments
 (0)