agiletoolkit-css
agiletoolkit-css copied to clipboard
Wrong width in media-queries
There is a issue with width in media-queries. It's somewhere around here: https://github.com/atk4/agiletoolkit-css/blob/master/framework/less/variables.less#L14
If I have browser resized for let's say 1100px width, then I get
@media screen and (min-width: 1025px)
.atk-layout > .atk-layout-row > .atk-layout-cell {
min-width: 1280px;
}
and atk-layout-cell becomes wider (1280px) than my current viewport (1100px).