Text elements containing only numbers are always rendered top left
See original GitHub issueWhen I create a text element and have only numbers in it, it will be rendered in the top left corner. As soon as there is a character in the text it is rendered as expected.
String/Character
Figma
Vue.js Rendering
Number Only
Figma
Vue.js Rendering
Code:
<template>
<Figma :figma="figmaConfig"></Figma>
</template>
<script>
export default {
name: 'FigmaLowCodeTest',
data: function () {
return {
figmaConfig: {
figmaFile: '<fileId>',
figmaAccessKey: '<key>'
}
}
}
}
</script>
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
left - CSS: Cascading Style Sheets - MDN Web Docs
The left CSS property participates in specifying the horizontal position of a positioned element. It has no effect on non-positioned ...
Read more >4 reasons your z-index isn't working (and how to fix it)
It seems simple at first- a higher z-index number means the element will be on top of elements with lower z-index numbers.
Read more >Content Jumping (and How To Avoid It)
Fixing with min-height To fix it, I used the browser's DevTools to measure the height of the resulting content and hardcoded it as...
Read more >css - Fixed position but relative to container
Long answer: The problem with using "fixed" positioning is that it takes the element out of flow. thus it can't be re-positioned relative...
Read more >Tables in HTML documents
The COLGROUP element; The COL element; Calculating the number of columns in a ... The TABLE element contains all other elements that specify...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Ah, ok. Thanks for the investigation! I will fix that in the next release!
works thx!