mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
Update to use shortened SCSS paths for some components
This commit is contained in:
parent
647a2a3e59
commit
96cbca8fb6
5 changed files with 7 additions and 6 deletions
|
@ -96,7 +96,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
</div>
|
||||
|
||||
<style lang="scss">
|
||||
@use 'ts/sass/scrollbar';
|
||||
@use 'scrollbar';
|
||||
|
||||
.nightMode {
|
||||
@include scrollbar.night-mode;
|
||||
|
|
|
@ -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 'button-mixins' as button;
|
||||
|
||||
button {
|
||||
display: flex;
|
||||
|
|
|
@ -83,7 +83,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 "button-mixins" as button;
|
||||
|
||||
@keyframes flash {
|
||||
0% {
|
||||
|
|
|
@ -88,9 +88,9 @@
|
|||
}
|
||||
}
|
||||
|
||||
@import "ts/sass/codemirror/lib/codemirror";
|
||||
@import "ts/sass/codemirror/theme/monokai";
|
||||
@import "ts/sass/codemirror/addon/fold/foldgutter";
|
||||
@import "codemirror/lib/codemirror";
|
||||
@import "codemirror/theme/monokai";
|
||||
@import "codemirror/addon/fold/foldgutter";
|
||||
|
||||
.CodeMirror {
|
||||
height: auto;
|
||||
|
|
|
@ -31,6 +31,7 @@ import { Editable } from "./editable";
|
|||
import { Codable } from "./codable";
|
||||
import { initToolbar, fieldFocused } from "./toolbar";
|
||||
import { initTagEditor } from "./tag-editor";
|
||||
import { getCurrentField } from "./helpers";
|
||||
|
||||
export { setNoteId, getNoteId } from "./note-id";
|
||||
export { saveNow } from "./change-timer";
|
||||
|
|
Loading…
Reference in a new issue