mirror of
https://github.com/fjdu/obsidian-latex-unicode.git
synced 2026-07-22 07:30:30 +00:00
small css change
This commit is contained in:
parent
fcad7130f3
commit
572a5d6e9c
2 changed files with 4 additions and 4 deletions
2
main.ts
2
main.ts
|
|
@ -40,7 +40,7 @@ export class LaTeXToUnicodeModal extends Modal {
|
|||
contentEl.createEl("h1", { text: "LaTeX to Unicode" });
|
||||
|
||||
const elContainer = contentEl.createEl('table');
|
||||
elContainer.className = 'inputTable';
|
||||
elContainer.className = 'latexInputTable';
|
||||
const first = elContainer.createEl('tr');
|
||||
first.createEl('td', {text: 'LaTeX command'});
|
||||
const elInput = first.createEl('td').createEl('input', {type: 'text'});
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
table, #userInput, #resDisp {
|
||||
table.latexInputTable, #userInput, #resDisp {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.inputTable td:first-child {
|
||||
.latexInputTable td:first-child {
|
||||
width: 30%;
|
||||
}
|
||||
|
||||
.inputTable td:last-child {
|
||||
.latexInputTable td:last-child {
|
||||
width: 70%;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue