Add edit/viewability to the item rarity (closes #152)

This commit is contained in:
Oliver-Akins 2024-03-31 15:19:19 -06:00
parent de672642d2
commit ad2da03f1e
6 changed files with 49 additions and 5 deletions

View file

@ -0,0 +1,25 @@
@use "../mixins/material";
.dotdungeon.style-v3 > .window-content {
select {
outline: none;
border: none;
@include material.elevate(3);
padding: 4px 8px;
color: white;
transition: all 200ms ease-in-out;
&:hover {
@include material.elevate(4);
}
&:focus-visible {
@include material.elevate(6);
}
}
option {
background: var(--surface);
color: var(--on-surface);
}
}

View file

@ -2,4 +2,8 @@
.grow {
flex-grow: 1;
}
.text-center {
text-align: center;
}
}