2
0
Fork 0
ff/themes/custom/source/css/_partial/mixins.less

8 lines
228 B
Plaintext
Raw Normal View History

2020-01-03 17:07:50 +00:00
.adapterMixin(@index) when (@index>=1) {
@media(min-width:extract(@adapterDeviceList,@index)){
html {
font-size: @baseFontSize/ @psdWidth*extract(@adapterDeviceList,@index);
}
.adapterMixin(@index - 1);
}
}