Some checks failed
🚀 Deploy - Demo / deployment (push) Has been cancelled
- 웹훅 URL을 https://admin.youtooplay.com/webhook로 변경 - Nginx 리버스 프록시 설정 파일 추가 - 배포 가이드 업데이트
31 lines
576 B
SCSS
31 lines
576 B
SCSS
@use "placeholders";
|
|
@use "@configured-variables" as variables;
|
|
|
|
@mixin rtl {
|
|
@if variables.$enable-rtl-styles {
|
|
[dir="rtl"] & {
|
|
@content;
|
|
}
|
|
}
|
|
}
|
|
|
|
@mixin boxed-content($nest-selector: false) {
|
|
& {
|
|
@extend %boxed-content-spacing;
|
|
|
|
@at-root {
|
|
@if $nest-selector == false {
|
|
.layout-content-width-boxed#{&} {
|
|
@extend %boxed-content;
|
|
}
|
|
}
|
|
// stylelint-disable-next-line @stylistic/indentation
|
|
@else {
|
|
.layout-content-width-boxed & {
|
|
@extend %boxed-content;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|