mirror of
https://github.com/youfoundjk/TeXcore.git
synced 2026-07-22 07:33:31 +00:00
21 lines
376 B
SCSS
21 lines
376 B
SCSS
@use 'styles/main';
|
|
@use 'styles/framed';
|
|
@use 'styles/plain';
|
|
@use 'styles/mathwiki';
|
|
@use 'styles/vivid';
|
|
|
|
:has(> .theorem-callout-framed) {
|
|
@include framed.framed();
|
|
}
|
|
|
|
:has(> .theorem-callout-plain) {
|
|
@include plain.plain();
|
|
}
|
|
|
|
:has(> .theorem-callout-mathwiki) {
|
|
@include mathwiki.mathwiki();
|
|
}
|
|
|
|
:has(> .theorem-callout-vivid) {
|
|
@include vivid.vivid();
|
|
}
|