Skip to content

Commit 580c671

Browse files
author
Dan Lasky
committed
message styling
1 parent a30cdae commit 580c671

3 files changed

Lines changed: 15 additions & 1 deletion

File tree

src/mm-dialog/mm-dialog.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@
2323
<div class="content-top">
2424
<template is="dom-if" if="{{type}}"><mm-icon height="25" width="25" type="{{_icon.type}}"></mm-icon></template>
2525
<template is="dom-if" if="{{header}}"><mm-header size="large">{{header}}</mm-header></template>
26-
<div id="dialogMessage">{{message}}<content></content></div>
26+
<div id="dialogMessage">
27+
<span class="body-normal">{{message}}</span>
28+
<content></content>
29+
</div>
2730
</div>
2831
<mm-footer id="dialogActionsContainer">
2932
<template is="dom-repeat" items="{{actions}}">

src/mm-dialog/mm-dialog.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
@import "_bourbon";
88
@import "_color";
99
@import "_mixins";
10+
@import "_text";
1011

1112
@include fit();
1213

src/shared/sass/_text.scss

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,14 @@ h5, .header-tiny {
5858
font-style: normal;
5959
text-transform: uppercase;
6060
color: $color-A3;
61+
}
62+
63+
.body-normal {
64+
font-size: 13px !important;
65+
line-height: 18px !important;
66+
font-family: "Arimo", sans-serif;
67+
@include fontSmoothing();
68+
font-weight: 400;
69+
font-style: normal;
70+
color: $color-A2;
6171
}

0 commit comments

Comments
 (0)