2
Fork 0
ff/themes/custom/source/css/_partial/mixins.less
2020-01-03 18:07:50 +01:00

8 lines
No EOL
228 B
Text

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