22// zurb.com/ink/
33// Licensed under MIT Open Source
44@use " sass:color" ;
5+ @use " sass:map" ;
56
67/// /
78/// @group button
@@ -72,13 +73,13 @@ table.button {
7273
7374 a {
7475 font-family : $body-font-family ;
75- font-size : map- get ($button-font-size , default );
76+ font-size : map . get ($button-font-size , default );
7677 font-weight : $button-font-weight ;
7778 color : $button-color ;
7879 text-decoration : none ;
7980 text-align : left ;
8081 display : inline-block ;
81- padding : map- get ($button-padding , default );
82+ padding : map . get ($button-padding , default );
8283 border : 0 solid $button-background ;
8384 border-radius : $button-radius ;
8485 }
@@ -119,11 +120,11 @@ table.button.tiny {
119120 table {
120121 td ,
121122 a {
122- padding : map- get ($button-padding , tiny );
123+ padding : map . get ($button-padding , tiny );
123124 }
124125
125126 a {
126- font-size : map- get ($button-font-size , tiny );
127+ font-size : map . get ($button-font-size , tiny );
127128 font-weight : normal ;
128129 }
129130 }
@@ -133,17 +134,17 @@ table.button.small {
133134 table {
134135 td ,
135136 a {
136- padding : map- get ($button-padding , small );
137- font-size : map- get ($button-font-size , small );
137+ padding : map . get ($button-padding , small );
138+ font-size : map . get ($button-font-size , small );
138139 }
139140 }
140141}
141142
142143table .button.large {
143144 table {
144145 a {
145- padding : map- get ($button-padding , large );
146- font-size : map- get ($button-font-size , large );
146+ padding : map . get ($button-padding , large );
147+ font-size : map . get ($button-font-size , large );
147148 }
148149 }
149150}
0 commit comments