Remove white border around level input in character sheet

This commit is contained in:
Carlos Fernandez 2026-05-04 20:55:09 -04:00
parent 94852cec21
commit 2fa5abd1fa

View file

@ -25,13 +25,19 @@
.name-row { .name-row {
display: flex; display: flex;
gap: 5px; gap: 6px;
align-items: start; align-items: start;
justify-content: space-between; justify-content: space-between;
padding: 0; padding: 0;
padding-top: 5px; padding-top: 5px;
flex: 1; flex: 1;
[contenteditable],
input {
border: 1px solid @soft-shadow;
background-color: light-dark(@dark-15, @dark-blue);
}
h1 { h1 {
display: flex; display: flex;
flex: 1; flex: 1;
@ -57,14 +63,16 @@
.label { .label {
display: flex; display: flex;
align-items: center; align-items: baseline;
gap: 4px; gap: 4px;
} }
input { input {
border: none;
width: 40px; width: 40px;
padding: 0; padding: 0;
text-align: center; text-align: center;
font-weight: 600;
} }
.level-button { .level-button {