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

8 lines
228 B
Plaintext

.adapterMixin(@index) when (@index>=1) {
@media(min-width:extract(@adapterDeviceList,@index)){
html {
font-size: @baseFontSize/ @psdWidth*extract(@adapterDeviceList,@index);
}
.adapterMixin(@index - 1);
}
}