Skip to content

Commit 52e0ff0

Browse files
committed
change base font size to 14px
1 parent 9409b3d commit 52e0ff0

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

packages/uui-css/lib/custom-properties.story.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ export const Sizing = () => html`
488488
// <h5>Headline H5</h5>
489489
// <br />
490490
// <p>
491-
// The default font-size is 15px, for a nice reading experience this conforms
491+
// The default font-size is 14px, for a nice reading experience this conforms
492492
// well with a line-height of 24px, which is our base-unit times 4.
493493
// </p>
494494
// <p>

packages/uui-css/lib/guidelines.story.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ export const Typography = () => html`
116116
class 'uui-lead' to a &#60;p&#62; element.
117117
</p>
118118
<p>
119-
The default font-size is 15px, for a nice reading experience this conforms
119+
The default font-size is 14px, for a nice reading experience this conforms
120120
well with a line-height of 24px, (base-unit * 4).
121121
</p>
122122

packages/uui-css/lib/uui-font.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
.uui-font {
44
font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
5-
font-size: 15px;
5+
font-size: 14px;
66
line-height: calc(var(--uui-size-2) * 4);
77
-webkit-font-smoothing: antialiased;
88
}

packages/uui-css/lib/uui-text.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
.uui-ol,
1313
.uui-text {
1414
font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
15-
font-size: 15px;
15+
font-size: 14px;
1616
line-height: calc(var(--uui-size-2) * 4);
1717
-webkit-font-smoothing: antialiased;
1818
}
@@ -142,7 +142,7 @@
142142
.uui-quoteblock,
143143
.uui-text blockquote {
144144
float: right;
145-
font-size: 15px;
145+
font-size: 14px;
146146
font-weight: 700;
147147
font-style: italic;
148148
margin-top: 0;

packages/uui-tabs/lib/uui-tab.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ export class UUITabElement extends ActiveMixin(LabelMixin('', LitElement)) {
182182
right: auto;
183183
border-radius: var(--uui-border-radius) var(--uui-border-radius) 0 0;
184184
height: 0px;
185-
width: calc(100% - 15px);
185+
width: calc(100% - 14px);
186186
bottom: 0;
187187
transition:
188188
opacity linear 120ms,

0 commit comments

Comments
 (0)