mirror of
https://github.com/owncast/owncast.git
synced 2024-11-24 05:38:58 +03:00
18 lines
338 B
SCSS
18 lines
338 B
SCSS
@mixin flexCenter {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
@mixin screen ($breakpoint) {
|
|
@if $breakpoint == desktop {
|
|
@media only screen and (min-width: 768px) {
|
|
@content;
|
|
}
|
|
}
|
|
@if $breakpoint == mobile {
|
|
@media only screen and (max-width: 481px) {
|
|
@content;
|
|
}
|
|
}
|
|
}
|