mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 07:22:23 -04:00
Fix scss paths
This commit is contained in:
parent
5cbb5242c8
commit
f453e3790c
3 changed files with 4 additions and 4 deletions
|
@ -130,7 +130,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
@use "../lib/sass/elevation" as *;
|
@use "../../lib/sass/elevation" as *;
|
||||||
|
|
||||||
/* Make sure labels are readable on custom Qt backgrounds */
|
/* Make sure labels are readable on custom Qt backgrounds */
|
||||||
.field-container {
|
.field-container {
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
/* Copyright: Ankitects Pty Ltd and contributors
|
/* Copyright: Ankitects Pty Ltd and contributors
|
||||||
* License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html */
|
* License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html */
|
||||||
|
|
||||||
@import "../lib/sass/base";
|
@import "../../lib/sass/base";
|
||||||
|
|
||||||
$btn-disabled-opacity: 0.4;
|
$btn-disabled-opacity: 0.4;
|
||||||
@import "bootstrap/scss/buttons";
|
@import "bootstrap/scss/buttons";
|
||||||
@import "bootstrap/scss/button-group";
|
@import "bootstrap/scss/button-group";
|
||||||
@import "../lib/sass/bootstrap-tooltip";
|
@import "../../lib/sass/bootstrap-tooltip";
|
||||||
|
|
||||||
html,
|
html,
|
||||||
body {
|
body {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/* Copyright: Ankitects Pty Ltd and contributors
|
/* Copyright: Ankitects Pty Ltd and contributors
|
||||||
* License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html */
|
* License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html */
|
||||||
@use "sass:color";
|
@use "sass:color";
|
||||||
@use "../lib/sass/button-mixins" as button;
|
@use "../../lib/sass/button-mixins" as button;
|
||||||
|
|
||||||
.linkb {
|
.linkb {
|
||||||
$size: var(--buttons-size);
|
$size: var(--buttons-size);
|
||||||
|
|
Loading…
Reference in a new issue