mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 07:22:23 -04:00
Fix after rebase
This commit is contained in:
parent
5a988f72fa
commit
16e6da893b
3 changed files with 5 additions and 5 deletions
|
@ -4,7 +4,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
-->
|
||||
<script lang="typescript">
|
||||
import { onMount, createEventDispatcher, getContext } from "svelte";
|
||||
import { nightModeKey } from "components/contextKeys";
|
||||
import { nightModeKey } from "components/context-keys";
|
||||
|
||||
export let id: string | undefined = undefined;
|
||||
let className = "";
|
||||
|
@ -39,7 +39,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
</button>
|
||||
|
||||
<style lang="scss">
|
||||
@use 'ts/sass/button_mixins' as button;
|
||||
@use 'ts/sass/button-mixins' as button;
|
||||
|
||||
button {
|
||||
display: flex;
|
||||
|
|
|
@ -4,7 +4,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
-->
|
||||
<script lang="typescript">
|
||||
import { getContext, createEventDispatcher } from "svelte";
|
||||
import { nightModeKey } from "components/contextKeys";
|
||||
import { nightModeKey } from "components/context-keys";
|
||||
import Badge from "components/Badge.svelte";
|
||||
import { deleteIcon } from "./icons";
|
||||
import { controlPressed, shiftPressed } from "lib/keys";
|
||||
|
@ -76,7 +76,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
</button>
|
||||
|
||||
<style lang="scss">
|
||||
@use "ts/sass/button_mixins" as button;
|
||||
@use "ts/sass/button-mixins" as button;
|
||||
|
||||
@keyframes flash {
|
||||
0% {
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
@typescript-eslint/no-explicit-any: "off",
|
||||
*/
|
||||
|
||||
import { disabledKey, nightModeKey } from "components/contextKeys";
|
||||
import { disabledKey, nightModeKey } from "components/context-keys";
|
||||
import { writable } from "svelte/store";
|
||||
|
||||
import TagEditor from "./TagEditor.svelte";
|
||||
|
|
Loading…
Reference in a new issue