diff --git a/source/components/PeriodSwitch.js b/source/components/PeriodSwitch.js
index d536666e6..a03983edb 100644
--- a/source/components/PeriodSwitch.js
+++ b/source/components/PeriodSwitch.js
@@ -52,8 +52,8 @@ export default compose(
return
})
return (
-
-
+
.value {
+ font-size: 220%;
+ }
+
+ margin: 0.6em 0;
+ > * {
+ margin: 0 0.6em;
+ }
+ `}>
+
{displayedRule.defaultValue != null && (
@@ -227,3 +246,19 @@ let NamespaceRulesList = compose(
)
})
+
+let Period = ({ period, valuesToShow }) =>
+ period ? (
+ valuesToShow && period === 'flexible' ? (
+
+ ) : (
+
+
+ {period}
+
+
+ )
+ ) : null