fix visual issues
This commit is contained in:
@@ -130,6 +130,21 @@ export class SeSelect extends HTMLElement {
|
|||||||
set height (value) {
|
set height (value) {
|
||||||
this.setAttribute('height', value);
|
this.setAttribute('height', value);
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* @function get
|
||||||
|
* @returns {any}
|
||||||
|
*/
|
||||||
|
get value () {
|
||||||
|
return this.$select.value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @function set
|
||||||
|
* @returns {void}
|
||||||
|
*/
|
||||||
|
set value (value) {
|
||||||
|
this.$select.value = value;
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* @function connectedCallback
|
* @function connectedCallback
|
||||||
* @returns {void}
|
* @returns {void}
|
||||||
|
|||||||
@@ -329,7 +329,11 @@ hr {
|
|||||||
margin-bottom: 8px;
|
margin-bottom: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#zoom {
|
||||||
|
color: var(--text-color);
|
||||||
|
background-color: var(--main-bg-color);
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
/*—————————————————————————————*/
|
/*—————————————————————————————*/
|
||||||
|
|
||||||
|
|||||||
@@ -1049,7 +1049,7 @@ export const getStrokedBBox = function (elems, addSVGElementFromJson, pathAction
|
|||||||
});
|
});
|
||||||
|
|
||||||
// This shouldn't ever happen...
|
// This shouldn't ever happen...
|
||||||
if (fullBb === undefined) { return null; }
|
if (!fullBb) { return null; }
|
||||||
|
|
||||||
// fullBb doesn't include the stoke, so this does no good!
|
// fullBb doesn't include the stoke, so this does no good!
|
||||||
// if (elems.length == 1) return fullBb;
|
// if (elems.length == 1) return fullBb;
|
||||||
|
|||||||
Reference in New Issue
Block a user