diff options
author | Sebastian Nyholm <sebastian@vaadin.com> | 2012-11-15 17:45:19 +0200 |
---|---|---|
committer | Sebastian Nyholm <sebastian@vaadin.com> | 2012-11-15 17:45:19 +0200 |
commit | 0bfa96ee1e05ad0867eb22e05a44e3a4290ec586 (patch) | |
tree | 2064433c55e5799077c1ea87ee7b4fae2c2ba8b4 /theme-compiler/tests/resources/scss | |
parent | e54ff59fbe6a5452b469a355176351cd710663d1 (diff) | |
download | vaadin-framework-0bfa96ee1e05ad0867eb22e05a44e3a4290ec586.tar.gz vaadin-framework-0bfa96ee1e05ad0867eb22e05a44e3a4290ec586.zip |
(#10174) Value of a variable cannot be assigned to another variable
Change-Id: Ib6879b685259c775fc9159e572c182093ae69f8d
Diffstat (limited to 'theme-compiler/tests/resources/scss')
-rw-r--r-- | theme-compiler/tests/resources/scss/variables.scss | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/scss/variables.scss b/theme-compiler/tests/resources/scss/variables.scss index 60acc5dd10..2448aaddb9 100644 --- a/theme-compiler/tests/resources/scss/variables.scss +++ b/theme-compiler/tests/resources/scss/variables.scss @@ -1,6 +1,7 @@ $blue: #3bbfce; $margin: 8px; $chameleon-font-family: Arial, Helvetica, "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif; +$font: 12px; .content-navigation { border-color: $blue; @@ -8,6 +9,8 @@ $chameleon-font-family: Arial, Helvetica, "Lucida Grande", "Lucida Sans Unicode" color: $blue; color1: darken($blue, 9%); font-family: $chameleon-font-family; + $font-size: $font; + font-size: $font-size; } .border { |