Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
reginaldo.marinho committed Dec 20, 2024
1 parent c7252cd commit 8c2a7e2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 5 additions & 3 deletions public/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -210,15 +210,16 @@ input.r-i-control[identity][disabled] {
display: block;
overflow: auto;
height: 300px;

max-height:400px
}
.r-q-b,
.r-q-l{
border-radius: 3px;
background-color: var(--bgc-frames);
padding-left: 10px;
padding-right: 10px;

height: max-content;
min-height: -webkit-fill-available;
}

.r-q-b::-webkit-scrollbar-thumb,
Expand All @@ -242,7 +243,6 @@ input.r-i-control[identity][disabled] {
justify-content: flex-start;
align-content: flex-start;
align-items:end;

}

.r-q-b .r-g-i-i{
Expand Down Expand Up @@ -393,6 +393,8 @@ input.r-i-focus-dependency {
grid-column-gap: 10px;
grid-row-gap: 10px;
max-height: calc(100% - 55px);
grid-template-rows:max-content;

}
.r-vertical-actions{
width: 200px;
Expand Down
4 changes: 1 addition & 3 deletions src/Layout/layout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,8 @@ export class LayoutFrame {
window.layout.tamplateRow = rowLength

var tamplateColumns = window.layout.tamplateColumns
var tamplateRows = window.layout.tamplateRow

principalElementRucula.style.gridTemplateColumns = `repeat(${tamplateColumns},1fr)`
principalElementRucula.style.gridTemplateRows = `repeat(${tamplateRows},1fr )`
principalElementRucula.style.gridTemplateRows = 'max-content'

for (let row = 1; row <= rowLength; row++) {

Expand Down

0 comments on commit 8c2a7e2

Please sign in to comment.