Don't change change list font size responsively

Sets change list font size to 13px regardless of page width.

Bug: Issue 4754
Change-Id: Ief9095dc6170a19470cf049afd8c2a938dad0d44
This commit is contained in:
Becky Siegel
2016-12-27 16:00:49 -08:00
parent 1b44bb8430
commit b4e62df8de

View File

@@ -16,6 +16,9 @@ limitations under the License.
<dom-module id="gr-change-list-styles">
<template>
<style>
:host {
font-size: 13px;
}
.headerRow {
display: flex;
}
@@ -121,20 +124,7 @@ limitations under the License.
width: auto;
}
}
@media only screen and (min-width: 1240px) {
:host {
font-size: 12px;
}
}
@media only screen and (min-width: 1340px) {
:host {
font-size: 13px;
}
}
@media only screen and (min-width: 1450px) {
:host {
font-size: 14px;
}
.project {
width: 20em;
}