Work towards better editing of embedded items

This commit is contained in:
Oliver-Akins 2024-01-11 23:20:35 -07:00
parent 0496be73b0
commit 10dcec3bd7
12 changed files with 136 additions and 77 deletions

View file

@ -18,7 +18,7 @@
&.confirm {
background: $colour-confirm;
color: $text-on-confirm;
&:hover, &:focus {
&:hover, &:focus-visible {
background: transparent;
color: $colour-confirm;
border-color: $colour-confirm;
@ -28,7 +28,7 @@
&.neutral {
background: $colour-neutral;
color: $text-on-neutral;
&:hover, &:focus {
&:hover, &:focus-visible {
background: transparent;
color: $colour-neutral;
border-color: $colour-neutral;
@ -38,7 +38,7 @@
&.danger {
background: $colour-danger;
color: $text-on-danger;
&:hover, &:focus {
&:hover, &:focus-visible {
background: transparent;
color: $colour-danger;
border-color: $colour-danger;

View file

@ -141,6 +141,18 @@
resize: vertical;
}
}
.aspect {
&__used {
display: flex;
align-items: center;
gap: 4px;
&--input {
margin: 0;
}
}
}
}
&--weapons {
grid-area: weapons;
@ -203,13 +215,6 @@
.placeholder {
opacity: 75%;
}
&__actions {
display: flex;
flex-direction: row;
justify-content: end;
gap: 4px;
}
}
}
&--mounts {
@ -222,6 +227,13 @@
grid-area: storage;
}
}
.actions {
display: flex;
flex-direction: row;
justify-content: end;
gap: 4px;
}
}