fix: broken contenteditable support in macOS
This commit is contained in:
parent
1e6e826426
commit
8c70f83297
1 changed files with 8 additions and 6 deletions
|
|
@ -464,7 +464,14 @@ export default defineComponent({
|
|||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
[contenteditable="true"] {
|
||||
.env-input-container {
|
||||
@apply relative;
|
||||
@apply inline-grid;
|
||||
@apply flex-1;
|
||||
}
|
||||
|
||||
[contenteditable] {
|
||||
@apply select-text;
|
||||
@apply text-secondaryDark;
|
||||
@apply font-medium;
|
||||
|
||||
|
|
@ -481,11 +488,6 @@ export default defineComponent({
|
|||
}
|
||||
}
|
||||
|
||||
.env-input-container {
|
||||
@apply inline-grid;
|
||||
@apply flex-1;
|
||||
}
|
||||
|
||||
.env-input {
|
||||
@apply flex;
|
||||
@apply items-center;
|
||||
|
|
|
|||
Loading…
Reference in a new issue