Remove "framework"

This commit is contained in:
schmelczerandras 2020-11-17 20:52:59 +01:00
parent b45bdb18a0
commit dc86d30eb2
72 changed files with 359 additions and 333 deletions

View file

@ -1,4 +1,16 @@
@import '../framework/framework';
$breakpoint-width: 925px !default;
@mixin on-small-screen() {
@media (max-width: $breakpoint-width - 1px) {
@content;
}
}
@mixin on-large-screen() {
@media (min-width: $breakpoint-width) {
@content;
}
}
@mixin center-children() {
display: flex;