2022-07-15 05:36:47 +02:00
|
|
|
@mixin flexCenter {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2022-10-22 10:45:54 +02:00
|
|
|
|
|
|
|
@mixin screen ($breakpoint) {
|
|
|
|
@if $breakpoint == desktop {
|
|
|
|
@media only screen and (min-width: 768px) {
|
|
|
|
@content;
|
|
|
|
}
|
|
|
|
}
|
2022-12-29 19:14:12 +01:00
|
|
|
@if $breakpoint == tablet {
|
|
|
|
@media only screen and (max-width: 768px) {
|
|
|
|
@content;
|
|
|
|
}
|
|
|
|
}
|
2022-10-22 10:45:54 +02:00
|
|
|
@if $breakpoint == mobile {
|
|
|
|
@media only screen and (max-width: 481px) {
|
|
|
|
@content;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|