mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 05:14:20 +03:00
32c3f6a9b6
* fix: #2668 Page Vertical Spacing Issues * Update test to reflect mobile work * chore: refactor action buttons --------- Co-authored-by: thisProjects <wibbet@wobbet.com> Co-authored-by: Gabe Kangas <gabek@real-ity.com>
25 lines
580 B
SCSS
25 lines
580 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;
|
|
}
|
|
}
|
|
|
|
// tablet will also apply to mobile as there is no cut-off for min-width, however changing this now could break CSS all over the site.
|
|
@if $breakpoint == tablet {
|
|
@media only screen and (max-width: 768px) {
|
|
@content;
|
|
}
|
|
}
|
|
@if $breakpoint == mobile {
|
|
@media only screen and (max-width: 481px) {
|
|
@content;
|
|
}
|
|
}
|
|
}
|