* Has modes for weapons and characters * Shows input when awakening is selected * Saves type and level to server * Redisplays type but level is broken
31 lines
417 B
SCSS
31 lines
417 B
SCSS
.AwakeningSelect .AwakeningSet {
|
|
.errors {
|
|
color: $error;
|
|
display: none;
|
|
padding: $unit 0;
|
|
|
|
&.visible {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.fields {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: $unit;
|
|
width: 100%;
|
|
|
|
.SelectTrigger {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.Label {
|
|
flex-grow: 0;
|
|
|
|
.Input {
|
|
min-width: $unit * 12;
|
|
width: inherit;
|
|
}
|
|
}
|
|
}
|
|
}
|