Bundle CSS
This commit is contained in:
parent
667dc0da1d
commit
c62b85c04d
4 changed files with 54 additions and 51 deletions
|
|
@ -1,7 +1,5 @@
|
|||
import { Editor, MarkdownView, Plugin, WorkspaceLeaf } from "obsidian";
|
||||
|
||||
import "./styles.css";
|
||||
|
||||
import * as lib from "../../backend/sync_lib/pkg/sync_lib.js";
|
||||
import * as wasmBin from "../../backend/sync_lib/pkg/sync_lib_bg.wasm";
|
||||
import { SyncSettingsTab } from "./views/settings-tab";
|
||||
|
|
|
|||
|
|
@ -1,12 +1,4 @@
|
|||
/*
|
||||
|
||||
This CSS file will be included with your plugin, and
|
||||
available in the app when your plugin is enabled.
|
||||
|
||||
If your plugin does not need CSS, delete this file.
|
||||
|
||||
*/
|
||||
|
||||
main {
|
||||
background-color: brown;
|
||||
.sync-settings-access-token textarea {
|
||||
width: 100%;
|
||||
height: 100px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -108,6 +108,7 @@ export class SyncSettingsTab extends PluginSettingTab {
|
|||
|
||||
new Setting(containerEl)
|
||||
.setName("Access token")
|
||||
.setClass("sync-settings-access-token")
|
||||
.setDesc(
|
||||
"Set the access token for the server that you can get from the server"
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue