apostroafe, auzi
This commit is contained in:
parent
33a7f8e1dc
commit
668ed4f963
@ -46,10 +46,10 @@ body {
|
||||
--iqser-button-radius: 17px;
|
||||
--iqser-button-font-size: 13px;
|
||||
--iqser-button-height: 34px;
|
||||
--iqser-font-family: "some placeholder value that should be overridden when configuring a theme";
|
||||
--iqser-font-family: 'some placeholder value that should be overridden when configuring a theme';
|
||||
}
|
||||
|
||||
$required-variables: "iqser-font-family" "iqser-primary";
|
||||
$required-variables: 'iqser-font-family' 'iqser-primary';
|
||||
|
||||
@mixin checkRequiredVariables($args, $theme) {
|
||||
@each $var in $required-variables {
|
||||
@ -60,7 +60,7 @@ $required-variables: "iqser-font-family" "iqser-primary";
|
||||
}
|
||||
|
||||
@mixin configureLight($args...) {
|
||||
@include checkRequiredVariables($args, "light");
|
||||
@include checkRequiredVariables($args, 'light');
|
||||
|
||||
body.light {
|
||||
@each $name, $value in meta.keywords($args) {
|
||||
@ -70,7 +70,7 @@ $required-variables: "iqser-font-family" "iqser-primary";
|
||||
}
|
||||
|
||||
@mixin configureDark($args...) {
|
||||
@include checkRequiredVariables($args, "dark");
|
||||
@include checkRequiredVariables($args, 'dark');
|
||||
|
||||
body.dark {
|
||||
@each $name, $value in meta.keywords($args) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user