
Working on a Scion 2E sheet and its been a minute since I've done a character sheet from the ground up. Struggling with getting inputs to fill the space between the label and skill dots. There's a bunch of width defaults coming from roll20's css class so I have these currently on width: 35% (because width:auto starts shoving off the skill dots from longer labels). This is what I have in the css: .sheet-radio-path {
order: 1;
}
.sheet-radio-skill {
height: .8em;
order: 2;
padding: 0px;
}
.sheet-input-skill {
order: 3;
min-width: 0px;
width: 35%;
flex: 1 1 auto;
line-height: .8em;
}
.sheet-dotcontainer {
display: inline-block;
float: right;
width: 90px;
order: 4;
} The html lives in a container in this class: .sheet-col {
width: 48%;
display: flex;
flex-direction: row;
flex: 1 auto;
}