1
0
forked from noxious/client

Fix styling issues detail panel

This commit is contained in:
Colin Kallemein 2024-07-04 15:31:20 +02:00
parent fa5acca143
commit 6b2e90751c
3 changed files with 15 additions and 9 deletions

View File

@ -153,8 +153,9 @@ function toTop() {
.modal-form { .modal-form {
&.asset-manager { &.asset-manager {
margin: 10px; margin: 10px;
width: calc(100% - 20px); width: calc(100% - 40px);
height: 100%; display: block;
.form-fields { .form-fields {
display: flex; display: flex;
gap: 10px; gap: 10px;

View File

@ -73,10 +73,12 @@ onBeforeUnmount(() => {
</script> </script>
<style lang="scss"> <style lang="scss">
/**
* @TODO when scrolling here, the vertical line is cut off .asset-info {
*/ .object-manager {
.modal-form { height: 100%;
padding: 10px; // @TODO why dis no work? fixme overflow: auto;
}
} }
</style> </style>

View File

@ -88,7 +88,10 @@ onBeforeUnmount(() => {
</script> </script>
<style lang="scss"> <style lang="scss">
.modal-form { .asset-info {
padding: 10px; // @TODO why dis no work? fixme .tile-manager {
height: 100%;
overflow: auto;
}
} }
</style> </style>