diff --git a/ts/editor/editable.scss b/ts/editor/editable.scss index 8a2e9e374..9cd7186f3 100644 --- a/ts/editor/editable.scss +++ b/ts/editor/editable.scss @@ -6,9 +6,6 @@ anki-editable { overflow: auto; padding: 6px; - /* Fit bootstraps .rounded */ - border-radius: 0.25rem; - &:empty::after { content: "\a"; white-space: pre; diff --git a/ts/editor/editingArea.ts b/ts/editor/editingArea.ts index e522bb8ef..5002ba817 100644 --- a/ts/editor/editingArea.ts +++ b/ts/editor/editingArea.ts @@ -23,7 +23,7 @@ export class EditingArea extends HTMLDivElement { constructor() { super(); this.attachShadow({ mode: "open" }); - this.className = "field rounded"; + this.className = "field"; const rootStyle = document.createElement("link"); rootStyle.setAttribute("rel", "stylesheet");