mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2024-11-23 08:13:01 +00:00
minor fixes
This commit is contained in:
parent
b7f7b05e73
commit
eae3eed29b
1 changed files with 2 additions and 3 deletions
|
@ -19,8 +19,8 @@
|
||||||
:height="preview_rectangle.height"
|
:height="preview_rectangle.height"
|
||||||
/>
|
/>
|
||||||
<rect
|
<rect
|
||||||
v-for="rect in rectangles"
|
v-for="(rect, index) in rectangles"
|
||||||
:key="rect.left"
|
:key="'rect' + index"
|
||||||
:x="rect.left"
|
:x="rect.left"
|
||||||
:y="rect.top"
|
:y="rect.top"
|
||||||
:width="rect.width"
|
:width="rect.width"
|
||||||
|
@ -115,7 +115,6 @@ export default class CalendarImage extends Vue {
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
div#container {
|
div#container {
|
||||||
position: relative;
|
position: relative;
|
||||||
max-height: 100%;
|
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
|
||||||
img#background {
|
img#background {
|
||||||
|
|
Loading…
Reference in a new issue