ds4/src/scss/components/_character_progression.scss

29 lines
697 B
SCSS
Raw Normal View History

.progression {
.progression-entry {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-end;
align-items: center;
padding-right: 3px;
h2.progression-label {
2021-01-19 17:20:50 +01:00
@include font-heading-upper;
display: block;
height: 50px;
2021-01-16 15:16:40 +01:00
padding: 0;
color: $c-light-grey;
border: none;
line-height: 50px;
margin: $header-top-margin 0;
text-align: right;
//flex: 0;
}
input.progression-value {
margin-left: 5px;
flex: 0 0 40px;
text-align: left;
}
}
}