1
0
Fork 0
mirror of https://github.com/voltbonn/profile-picture-generator.git synced 2024-12-22 07:45:04 +00:00

fix: there was a weird line in the editor sometimes

This commit is contained in:
thomasrosen 2023-10-03 12:48:31 +02:00
parent 277952640b
commit f672a4868f

View file

@ -182,6 +182,8 @@ button.choosen:after {
font-size: 0; font-size: 0;
cursor: move; cursor: move;
overflow: hidden; overflow: hidden;
width: calc(36vh - 1px);
height: calc(36vh - 1px);
background: var(--editor-purple); background: var(--editor-purple);
} }
.Editor .background{ .Editor .background{
@ -195,7 +197,7 @@ button.choosen:after {
position: relative; position: relative;
width: 36vh; width: 36vh;
height: 36vh; height: 36vh;
transform: translate(0.1px, 0.1px); /* transform: translate(0.1px, 0.1px); */
} }
.Editor .hashtag{ .Editor .hashtag{
pointer-events: none; pointer-events: none;
@ -204,6 +206,6 @@ button.choosen:after {
left: 0; left: 0;
width: 100%; width: 100%;
height: 100%; height: 100%;
transform: translate(0.1px, 0.1px); /* transform: translate(0.1px, 0.1px); */
} }